-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
ambiguous overload for 'push_back' and 'operator+=' #235
Comments
I confirm the error. With clang 7.3.0 (clang-703.0.29), the error is a bit shorter (but basically the same):
|
I wonder if having an emplace_back that chained to the vector version would be less ambiguous. |
The problem is that |
Fixed with last commit to develop branch. |
Can confirm that it is fixed. Thanks for the fix and the great library! |
When compiling this very simple program with g++ 4.9.2, I get "ambiguous overload" errors about both the
push_back
and theoperator+=
calls.See here for the compiler output (it's rather large)
The text was updated successfully, but these errors were encountered: