Skip to content

Commit 0686589

Browse files
authored
Add Analysis tag value (#220)
1 parent 9d1cf8b commit 0686589

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

include/Monitoring/Tags.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,12 @@ enum class Value : unsigned short int {
106106
PerRun, // 35
107107
Monitoring, // 36
108108
CRORC, // 37
109-
ACO // 38
109+
ACO, // 38
110+
Analysis // 39
110111
};
111112

112113
// Tag value array
113-
static constexpr std::array<std::string_view, 39> TAG_VALUE = {{
114+
static constexpr std::array<std::string_view, 40> TAG_VALUE = {{
114115
"Null"sv,
115116
"AD"sv, // 1
116117
"CPV"sv, // 2
@@ -149,7 +150,8 @@ static constexpr std::array<std::string_view, 39> TAG_VALUE = {{
149150
"prun"sv, // 35
150151
"monitoring"sv, // 36
151152
"CRORC"sv, // 37
152-
"ACO"sv // 38
153+
"ACO"sv, // 38
154+
"Analysis"sv // 39
153155
}};
154156

155157
static constexpr std::string_view GetValue(const int value)

0 commit comments

Comments
 (0)