Change naming convention for enum class enumerators
[babeltrace.git] / tests / lib / conds / utils.cpp
index b7d2c487e03504eac70ed44f47f8ebb826154b55..4d4e3b1dd14454248f787722922605e45ded7279 100644 (file)
@@ -19,7 +19,7 @@
 CondTrigger::CondTrigger(const Type type, const std::string& condId,
                          const bt2c::CStringView nameSuffix) noexcept :
     _mType {type},
-    _mCondId {fmt::format("{}:{}", type == Type::PRE ? "pre" : "post", condId)},
+    _mCondId {fmt::format("{}:{}", type == Type::Pre ? "pre" : "post", condId)},
     _mName {fmt::format("{}{}{}", condId, nameSuffix ? "-" : "", nameSuffix ? nameSuffix : "")}
 {
 }
This page took 0.023965 seconds and 4 git commands to generate.