Skip to content
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

Compilation error: back_inserter is not a member of std #2

Closed
AsukaLangleyfag opened this issue Jul 23, 2015 · 2 comments
Closed

Compilation error: back_inserter is not a member of std #2

AsukaLangleyfag opened this issue Jul 23, 2015 · 2 comments

Comments

@AsukaLangleyfag
Copy link

Tried to compile taiga with Visual Studio 2015 RTM, while compilation of anitomy got an error in line 182 of tokenizer.cpp:
Error C2039: 'back_inserter': is not a member of 'std'
Error C3861: 'back_inserter': identifier not found

@erengy
Copy link
Owner

erengy commented Jul 23, 2015

It might work if you include the <iterator> header in tokenizer.cpp, as in:

#include <algorithm>
#include <iterator>
#include <set>

Could you try that out? I haven't switched to VS 2015 yet.

@AsukaLangleyfag
Copy link
Author

Yup, looks like it compiles now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants