-
Notifications
You must be signed in to change notification settings - Fork 12
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
Support for C++11 #5
Comments
It's so nice to see that someone is interested in the library! |
Well, I noticed a pitfall I didn't see yesterday, the internal implementation of most member functions depends on the |
@DBJDBJ well, code quality isn't great.. commit messages aren't either.. |
Well, I should have said what I have written at the top of the readme a minute ago. Before I might commit some more time I would like to know what are the requirements @eyalroz has? How should "fixed string" behave? |
It would be nice if you could make this class C++11-compatible. Many of us are stuck using older versions of the language standard...
Obviously, this will mean some constexpr members may need to become
CONSTEXPR_SINCE_CPP14
orCONSTEXPR_SINCE_CPP17
; and you may need to drop std::array which is pre-constexpr'ed in C++11. But it's still worth it IMHO :-) ... a bit of preprocessor magic can make it happen.The text was updated successfully, but these errors were encountered: