2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-27 06:52:11 +00:00

added std:: qualification to string

[SVN r15956]
This commit is contained in:
Jeremy Siek
2002-10-19 16:55:45 +00:00
parent 3e954fede7
commit de72dd0fae

View File

@@ -218,7 +218,7 @@
char buf[256];
sprintf(buf, "default%i\0", i);
++i;
return string(buf);
return std::string(buf);
#else
std::stringstream out;
out << "default" << i;