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
The following code can never run successfully from vim
#include <boost/tuple/tuple.hpp> #include <iostream> int main() { int x = 3; std::cout << x << std::endl; }
I ran it using :Wandbox --options=boost-1.67. Changing the boost version in options or changing the compiler has no effect.
:Wandbox --options=boost-1.67
The error message is:
mprog.cc:1:10: fatal error: 'boost/tuple/tuple.hpp' file not found
Commenting out the first line (#include <boost/tuple/tuple.hpp>) can make it work
#include <boost/tuple/tuple.hpp>
Could you please take a look? Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code can never run successfully from vim
I ran it using
:Wandbox --options=boost-1.67
. Changing the boost version in options or changing the compiler has no effect.The error message is:
Commenting out the first line (
#include <boost/tuple/tuple.hpp>
) can make it workCould you please take a look? Thanks
The text was updated successfully, but these errors were encountered: