Browse Source

fixed int to string

develop
Robin Thoni 8 years ago
parent
commit
b309fab34b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/DataAccess/HostsConfig.cpp

+ 1
- 1
src/DataAccess/HostsConfig.cpp View File

@@ -19,7 +19,7 @@
19 19
         if (!v || !v.is##TYPE())                        \
20 20
         {                                               \
21 21
             res.addWarning("Could not find value "      \
22
-                VALUE " for item " + i);                \
22
+                VALUE " for item " + std::to_string(i));\
23 23
             action = nullptr;                           \
24 24
         }                                               \
25 25
         else                                            \

Loading…
Cancel
Save