Compile error due to `deduce_char_traits` ambiguity
The following code fails to compile due to deduce_char_traits
ambiguity:
#include <iostream>
#include <string>
#include <boost/container/string.hpp>
#include <boost/lexical_cast.hpp>
int main (int argc, char* argv[])
{
std::string str;
boost::container::string str_;
std::cout << boost::lexical_cast<std::string>(str_) << std::endl;
return 0;
}
Change History
(5)
Owner: |
changed from nasonov to Antony Polukhin
|
Status: |
new → assigned
|
Resolution: |
→ fixed
|
Status: |
assigned → closed
|
Test case added in r76817