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

First round of fixing Clang compiler and linker problems

parent a18d133d
No related branches found
No related tags found
No related merge requests found
...@@ -60,8 +60,6 @@ namespace DD4hep { ...@@ -60,8 +60,6 @@ namespace DD4hep {
private: private:
/// Initializing constructor: Does not set reference to IOVType ! /// Initializing constructor: Does not set reference to IOVType !
explicit IOV() = delete; explicit IOV() = delete;
/// Inhibit assignment
IOV& operator=(const IOV& c) = default;
public: public:
/// Key definition /// Key definition
typedef long Key_first_type; typedef long Key_first_type;
...@@ -82,6 +80,8 @@ namespace DD4hep { ...@@ -82,6 +80,8 @@ namespace DD4hep {
IOV(const IOV& copy) = default; IOV(const IOV& copy) = default;
/// Standard Destructor /// Standard Destructor
~IOV() = default; ~IOV() = default;
/// Assignment operator
IOV& operator=(const IOV& c) = default;
/// Move the data content: 'from' will be reset to NULL /// Move the data content: 'from' will be reset to NULL
void move(IOV& from); void move(IOV& from);
/// Create string representation of the IOV /// Create string representation of the IOV
......
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