We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec5406f commit 2152a76Copy full SHA for 2152a76
DataFormats/Headers/include/Headers/DataHeader.h
@@ -287,7 +287,7 @@ struct Descriptor {
287
bool operator!=(const Descriptor& other) const { return not this->operator==(other); }
288
289
// Convesion operators for comparison with their implicitly convertible types
290
- friend bool operator==(const Descriptor& lhs, ImplicitConversion rhs) { return static_cast<ImplicitConversion>(lhs)==rhs; }
+ friend bool operator==(const Descriptor& lhs, ImplicitConversion rhs) { return static_cast<ImplicitConversion>(lhs) == rhs; }
291
// explicitly forbid comparison with e.g. const char* strings
292
// use: value == Descriptor<N>("DESC") for the appropriate
293
// template instantiation instead
0 commit comments