Skip to content
Snippets Groups Projects
Commit 4ced7fc7 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

eliminated some warnings

parent 809fe093
No related branches found
No related tags found
No related merge requests found
...@@ -195,6 +195,7 @@ namespace ChimeraTK { ...@@ -195,6 +195,7 @@ namespace ChimeraTK {
} }
void registerDeviceModule(DeviceModule* deviceModule); void registerDeviceModule(DeviceModule* deviceModule);
protected: protected:
friend class Module; friend class Module;
friend class VariableNetwork; friend class VariableNetwork;
...@@ -391,7 +392,7 @@ namespace ChimeraTK { ...@@ -391,7 +392,7 @@ namespace ChimeraTK {
"caused by " "caused by "
"incorrect ownership of variables/accessors or VariableGroups."); "incorrect ownership of variables/accessors or VariableGroups.");
} }
void setCurrentVersionNumber(VersionNumber) { void setCurrentVersionNumber(VersionNumber) override {
throw ChimeraTK::logic_error("setCurrentVersionNumber() called on the application. This is probably " throw ChimeraTK::logic_error("setCurrentVersionNumber() called on the application. This is probably "
"caused by " "caused by "
"incorrect ownership of variables/accessors or VariableGroups."); "incorrect ownership of variables/accessors or VariableGroups.");
......
...@@ -18,7 +18,7 @@ namespace ChimeraTK { ...@@ -18,7 +18,7 @@ namespace ChimeraTK {
class Application; class Application;
class ModuleGroup; class ModuleGroup;
class ConfigReader; struct ConfigReader;
class ApplicationModule : public ModuleImpl { class ApplicationModule : public ModuleImpl {
public: public:
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
namespace ChimeraTK { namespace ChimeraTK {
class ConfigReader; struct ConfigReader;
/** /**
* Some common implementations of a few functions in Module used by most * Some common implementations of a few functions in Module used by most
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
namespace ChimeraTK { namespace ChimeraTK {
class ApplicationModule; class ApplicationModule;
class ConfigReader; struct ConfigReader;
class VariableGroup : public ModuleImpl { class VariableGroup : public ModuleImpl {
public: public:
......
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