Browse Source

Fixing string conversion issue

Josh Engebretson 9 years ago
parent
commit
07eeae965a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Atomic/Metrics/Metrics.cpp

+ 1 - 1
Source/Atomic/Metrics/Metrics.cpp

@@ -107,7 +107,7 @@ String MetricsSnapshot::PrintData(unsigned columns, unsigned minCount)
             column = 0;
             column = 0;
         }
         }
 
 
-        line += entry;
+        line += String(entry);
         column++;
         column++;
         line += "     ";
         line += "     ";