File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,13 @@ enum class Value : unsigned short int {
110110 StfBuilder, // 41
111111 StfSender, // 42
112112 TfBuilder, // 43
113- TfScheduler // 44
113+ TfScheduler, // 44
114+ DataSampling, // 45
115+ Mergers // 46
114116};
115117
116118// Tag value array
117- static constexpr std::array<std::string_view, 45 > TAG_VALUE = {{
119+ static constexpr std::array<std::string_view, 47 > TAG_VALUE = {{
118120 " Null" sv,
119121 " AD" sv, // 1
120122 " CPV" sv, // 2
@@ -159,7 +161,9 @@ static constexpr std::array<std::string_view, 45> TAG_VALUE = {{
159161 " StfB" sv, // 41
160162 " StfS" sv, // 42
161163 " TfB" sv, // 43
162- " TfS" sv // 44
164+ " TfS" sv, // 44
165+ " DS" sv, // 45
166+ " Mergers" sv // 46
163167}};
164168
165169static constexpr std::string_view GetValue (const int value)
You can’t perform that action at this time.
0 commit comments