We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d1cf8b commit 0686589Copy full SHA for 0686589
include/Monitoring/Tags.h
@@ -106,11 +106,12 @@ enum class Value : unsigned short int {
106
PerRun, // 35
107
Monitoring, // 36
108
CRORC, // 37
109
- ACO // 38
+ ACO, // 38
110
+ Analysis // 39
111
};
112
113
// Tag value array
-static constexpr std::array<std::string_view, 39> TAG_VALUE = {{
114
+static constexpr std::array<std::string_view, 40> TAG_VALUE = {{
115
"Null"sv,
116
"AD"sv, // 1
117
"CPV"sv, // 2
@@ -149,7 +150,8 @@ static constexpr std::array<std::string_view, 39> TAG_VALUE = {{
149
150
"prun"sv, // 35
151
"monitoring"sv, // 36
152
"CRORC"sv, // 37
- "ACO"sv // 38
153
+ "ACO"sv, // 38
154
+ "Analysis"sv // 39
155
}};
156
157
static constexpr std::string_view GetValue(const int value)
0 commit comments