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

don't insert string type #3

Open
GoogleCodeExporter opened this issue Mar 23, 2015 · 0 comments
Open

don't insert string type #3

GoogleCodeExporter opened this issue Mar 23, 2015 · 0 comments

Comments

@GoogleCodeExporter
Copy link

As below is error:
test_case(tree_any_type) 
{
  tree<string> tr;
  tr.insert(tr.end(),"1");
}

test_runner.cpp:130:25: error: call of overloaded 
‘insert(the::_tree_private::mutable_tr<std::basic_string<char>, 
the::tree<std::basic_string<char> > >::pre_iterator, const char [2])’ is 
ambiguous
   tr.insert(tr.end(),"1");

As below is right:
test_case(tree_any_type) 
{
  tree<string> tr;
  tr.insert(tr.end(),string("1")); 
}


Original issue reported on code.google.com by [email protected] on 17 Jul 2013 at 3:26

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

No branches or pull requests

1 participant