Skip to content

Commit 2c681ad

Browse files
authored
Address review comments
1 parent f74d96a commit 2c681ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/aikido/common/EnumFlags.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
#include <type_traits>
55

66
/// Enable bitwise operators for strongly-typed enums.
7-
///
8-
/// Adapted from
9-
/// http://blog.bitwigglers.org/using-enum-classes-as-type-safe-bitmasks/
7+
8+
// Adapted from
9+
// http://blog.bitwigglers.org/using-enum-classes-as-type-safe-bitmasks/
1010

1111
// clang-format off
1212

1313
#define AIKIDO_ENABLE_BITWISE_OPERATORS(X) \
14-
template<> \
14+
template <> \
1515
struct EnableBitwiseOperators< X > \
1616
{ \
1717
static const bool enable = true; \

0 commit comments

Comments
 (0)