Skip to content
Snippets Groups Projects
Commit 7f86963c authored by Frank Gaede's avatar Frank Gaede
Browse files

- fix for clang compiler ( made ContextUpdate public in Geant4Action)

parent 19f96ce5
No related branches found
No related tags found
No related merge requests found
...@@ -141,6 +141,9 @@ namespace DD4hep { ...@@ -141,6 +141,9 @@ namespace DD4hep {
/// Reference count. Initial value: 1 /// Reference count. Initial value: 1
long m_refCount; long m_refCount;
//fg: ContextUpdate needs to be public for the clang compiler
// as it is used in SequenceHdl::setContextToClients()
public:
/// Functor to update the context of a Geant4Action object /// Functor to update the context of a Geant4Action object
/** /**
* @author M.Frank * @author M.Frank
...@@ -156,6 +159,8 @@ namespace DD4hep { ...@@ -156,6 +159,8 @@ namespace DD4hep {
void operator()(Geant4Action* action) const; void operator()(Geant4Action* action) const;
}; };
friend class ContextUpdate; friend class ContextUpdate;
protected:
/// Actor class to manipulate action groups /// Actor class to manipulate action groups
/** /**
* @author M.Frank * @author M.Frank
......
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