We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Find out why it is not possible to initialize constants in Constants.m with std::numeric_limits.
Constants.m
std::numeric_limits
The following example results in a compiler error (namespace std is not known):
std
const unsigned int fuegoMaxPonderTimeMaximum = std::numeric_limits<unsigned int>::max();
I tried renaming Constants.m so that it uses the ".mm" file extension, assuming that this would tickle the C++ compiler, but still no luck.
The text was updated successfully, but these errors were encountered:
herzbube
No branches or pull requests
Find out why it is not possible to initialize constants in
Constants.m
withstd::numeric_limits
.The following example results in a compiler error (namespace
std
is not known):I tried renaming
Constants.m
so that it uses the ".mm" file extension, assuming that this would tickle the C++ compiler, but still no luck.The text was updated successfully, but these errors were encountered: