2
0

Fix fold expr (#389)

Este cometimento está contido em:
Kuricheti, Mythreya
2025-05-09 14:18:19 -07:00
cometido por GitHub
ascendente eaf3bbceb7
cometimento f3ea8b1178
+1 -1
Ver ficheiro
@@ -137,7 +137,7 @@ struct context
template <typename... Args>
bool is_tracing_one_of(Args... _args) const
{
return ((false || is_tracing(_args)), ...);
return (is_tracing(_args) || ...);
}
};