Skip to content
Snippets Groups Projects
Commit 92dc7ca5 authored by Steven Murray's avatar Steven Murray
Browse files

Correctly qualified cta::make_unique<TimestampedValue> within TimeBasedCache.hpp

parent 181e25db
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,7 @@ public:
}
} else { // No cache hit
const auto emplaceResult = m_cache.emplace(std::make_pair(key,
make_unique<TimestampedValue>(now, getNonCachedValue())));
cta::make_unique<TimestampedValue>(now, getNonCachedValue())));
return emplaceResult.first->second->value;
}
}
......
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