-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use strongly-typed enum flags. #340
Open
brianhou
wants to merge
20
commits into
master
Choose a base branch
from
enhancement/brianhou/saver-enumflags
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+85
−24
Open
Changes from 13 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
0bcee06
Add flags to select what should be saved by Saver classes.
brianhou 1620118
Add more tests.
brianhou eaf5718
Merge branch 'master' into enhancement/brianhou/saver-flags
brianhou a47a693
Restructure SaverOptions.
brianhou 0ab8008
Address @jslee02's comments.
brianhou f08fa35
Remove incorrect const specifier.
brianhou d7e1b3e
Update CHANGELOG.md.
brianhou 7d4ff7f
Use strongly-typed enum flags.
brianhou ca126d5
Merge branch 'master' into enhancement/brianhou/saver-enumflags
brianhou 3b34c60
Merge branch 'master' into enhancement/brianhou/saver-enumflags
brianhou cc89d48
Merge branch 'master' into enhancement/brianhou/saver-enumflags
jslee02 d30437f
Merge branch 'master' into enhancement/brianhou/saver-enumflags
brianhou cfae5f5
Merge branch 'master' into enhancement/brianhou/saver-enumflags
jslee02 f74d96a
Merge branch 'master' into enhancement/brianhou/saver-enumflags
brianhou 2c681ad
Address review comments
brianhou bdb01a3
Merge branch 'master' into enhancement/brianhou/saver-enumflags
brianhou f5d8f12
Merge branch 'master' into enhancement/brianhou/saver-enumflags
brianhou cf5a9f3
Merge branch 'master' into enhancement/brianhou/saver-enumflags
brianhou 6f941fc
Merge branch 'master' into enhancement/brianhou/saver-enumflags
brianhou 18a25be
Merge branch 'master' into enhancement/brianhou/saver-enumflags
egordon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#ifndef AIKIDO_COMMON_ENUMFLAGS_HPP_ | ||
#define AIKIDO_COMMON_ENUMFLAGS_HPP_ | ||
|
||
#include <type_traits> | ||
|
||
/// Enable bitwise operators for strongly-typed enums. | ||
/// | ||
/// Adapted from | ||
/// http://blog.bitwigglers.org/using-enum-classes-as-type-safe-bitmasks/ | ||
|
||
// clang-format off | ||
|
||
#define AIKIDO_ENABLE_BITWISE_OPERATORS(X) \ | ||
template<> \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: |
||
struct EnableBitwiseOperators< X > \ | ||
{ \ | ||
static const bool enable = true; \ | ||
}; | ||
|
||
template <typename Enum> | ||
struct EnableBitwiseOperators | ||
{ | ||
static const bool enable = false; | ||
}; | ||
|
||
template <typename Enum> | ||
typename std::enable_if<EnableBitwiseOperators<Enum>::enable, Enum>::type | ||
operator&(Enum lhs, Enum rhs) | ||
{ | ||
using T = typename std::underlying_type<Enum>::type; | ||
return static_cast<Enum>(static_cast<T>(lhs) & static_cast<T>(rhs)); | ||
} | ||
|
||
template <typename Enum> | ||
typename std::enable_if<EnableBitwiseOperators<Enum>::enable, Enum>::type | ||
operator|(Enum lhs, Enum rhs) | ||
{ | ||
using T = typename std::underlying_type<Enum>::type; | ||
return static_cast<Enum>(static_cast<T>(lhs) | static_cast<T>(rhs)); | ||
} | ||
|
||
// clang-format on | ||
|
||
#endif // AIKIDO_COMMON_ENUMFLAGS_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Maybe we want to make this as non-doxygen style comment because this comment is not specifically tied to a code but just a note?