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
Using v1.8.1 the order of includes is important. If I (alphabetically sorted)
#include <spdlog/fmt/bin_to_hex.h> #include <spdlog/spdlog.h>
I get size_t not defined and a lot other issues.
size_t
But if I
#include <spdlog/spdlog.h> #include <spdlog/fmt/bin_to_hex.h>
it works fine.
Not sure if this is to be considered a bug, but people tend to say the order of includes should not matter.
The text was updated successfully, but these errors were encountered:
I think it is already fixed in pr #2035
Sorry, something went wrong.
I just found this PR that I seemed to miss before.
No branches or pull requests
Using v1.8.1 the order of includes is important.
If I (alphabetically sorted)
I get
size_t
not defined and a lot other issues.But if I
it works fine.
Not sure if this is to be considered a bug, but people tend to say the order of includes should not matter.
The text was updated successfully, but these errors were encountered: