1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

added namespace and include to previous commit

This commit is contained in:
Marc Zinnschlag 2016-04-26 15:42:11 +02:00
parent 32123aec2b
commit 57101c1b19

View file

@ -5,6 +5,7 @@
#include <map>
#include <set>
#include <fstream>
#include <cmath>
#include <boost/program_options.hpp>
@ -443,7 +444,7 @@ int clone(Arguments& info)
int digitCount = 1; // For a nicer output
if (recordCount > 0)
digitCount = (int)log10(recordCount) + 1;
digitCount = (int)std::log10(recordCount) + 1;
std::cout << "Loaded " << recordCount << " records:" << std::endl << std::endl;