Skip to content
Snippets Groups Projects
Commit d054f4da authored by Markus Frank's avatar Markus Frank Committed by MarkusFrankATcernch
Browse files

Fix gcc 6.2 backwards compatibility

parent c7b6bb04
No related branches found
No related tags found
No related merge requests found
...@@ -65,8 +65,11 @@ namespace dd4hep { ...@@ -65,8 +65,11 @@ namespace dd4hep {
class VolIDs: public std::vector<VolID> { class VolIDs: public std::vector<VolID> {
public: public:
typedef std::vector<VolID> Base; typedef std::vector<VolID> Base;
using Base::Base; /// Default constructor
/// Copy operator VolIDs() = default;
/// Move constructor
VolIDs(VolIDs&& copy) = default;
/// Copy constructor
VolIDs(const VolIDs& copy) = default; VolIDs(const VolIDs& copy) = default;
/// Move assignment /// Move assignment
VolIDs& operator=(VolIDs&& copy) = default; VolIDs& operator=(VolIDs&& copy) = default;
......
...@@ -7,7 +7,8 @@ dd4hep simulation example setup using the python configuration ...@@ -7,7 +7,8 @@ dd4hep simulation example setup using the python configuration
""" """
from __future__ import absolute_import, unicode_literals from __future__ import absolute_import, unicode_literals
import os, logging import os
import logging
logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.INFO) logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.INFO)
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment