Fix fold expr (#389)
Dieser Commit ist enthalten in:
committet von
GitHub
Ursprung
eaf3bbceb7
Commit
f3ea8b1178
@@ -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) || ...);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren