Skip to content

Commit f3ea8b1

Browse files
authored
Fix fold expr (#389)
1 parent eaf3bbc commit f3ea8b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/lib/rocprofiler-sdk/context/context.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ struct context
137137
template <typename... Args>
138138
bool is_tracing_one_of(Args... _args) const
139139
{
140-
return ((false || is_tracing(_args)), ...);
140+
return (is_tracing(_args) || ...);
141141
}
142142
};
143143

0 commit comments

Comments
 (0)