1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-28 03:51:53 +02:00

daemon: int2String -> std::to_string.

This commit is contained in:
Eelco Dolstra
2015-12-02 16:51:00 +02:00
committed by Ludovic Courtès
parent 60c7c364f8
commit 79aa1a8305
4 changed files with 11 additions and 18 deletions
+1 -1
View File
@@ -433,7 +433,7 @@ Nest::~Nest()
static string escVerbosity(Verbosity level)
{
return int2String((int) level);
return std::to_string((int) level);
}