Skip to content
Snippets Groups Projects
Commit 450b6a8d authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

GaudiTestSuite: fix missing declaration of static member

parent 979e3109
No related branches found
No related tags found
No related merge requests found
Pipeline #10565988 passed
......@@ -103,7 +103,7 @@ private:
Gaudi::Property<GaudiUtils::Map<std::string, std::string>> m_24{ this, "GaudiMapSS" };
using Triplet = std::tuple<std::string, std::string, std::string>;
static std::hash<std::string> hasher;
static inline std::hash<std::string> hasher;
struct HashFunction {
std::size_t operator()( Triplet const& entry ) const {
return hasher( std::get<0>( entry ) ) ^ hasher( std::get<1>( entry ) ) ^ hasher( std::get<2>( entry ) );
......
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