Skip to content
Snippets Groups Projects
Commit 1a1f906a authored by Charles Leggett's avatar Charles Leggett
Browse files

Merge branch 'fix-regression-atlas' into 'master'

Restore ModuleLoadedIncident::TYPE()

Removal of ModuleLoadedIncident::TYPE() did not take into account the Atlas use of it,
see GAUDI-1062.

See merge request !27
parents 70dc41d9 a59fd1ae
No related branches found
No related tags found
No related merge requests found
...@@ -41,9 +41,10 @@ private: ...@@ -41,9 +41,10 @@ private:
*/ */
class ModuleLoadedIncident : public ModuleIncident { class ModuleLoadedIncident : public ModuleIncident {
public: public:
static std::string TYPE() { return "ModuleLoaded"; }
ModuleLoadedIncident(std::string source, // Source(service or alg) name) ModuleLoadedIncident(std::string source, // Source(service or alg) name)
std::string module // module(DLL) in question std::string module // module(DLL) in question
) : ModuleIncident(std::move(source), "ModuleLoaded", std::move(module)) { } ) : ModuleIncident(std::move(source), TYPE(), std::move(module)) { }
}; };
#endif //GAUDIKERNEL_MODULEINCIDENT_H #endif //GAUDIKERNEL_MODULEINCIDENT_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment