aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-13 03:34:49 +0000
committerlloyd <[email protected]>2010-10-13 03:34:49 +0000
commitfcd3aba1ff6b8597b31165474573dbb339479c14 (patch)
treef78d39b6d30c91139cb8f47be580e1c648e50c17 /src/engine
parentba142ed2eaa21445d49cbbc8ae3b3d4dc625b9d7 (diff)
Post-merge fixups
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/dyn_engine/dyn_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/dyn_engine/dyn_engine.cpp b/src/engine/dyn_engine/dyn_engine.cpp
index 83169f431..f48f1a06d 100644
--- a/src/engine/dyn_engine/dyn_engine.cpp
+++ b/src/engine/dyn_engine/dyn_engine.cpp
@@ -35,7 +35,7 @@ Dynamically_Loaded_Engine::Dynamically_Loaded_Engine(
if(mod_version != 20100908)
throw std::runtime_error("Incompatible version in " +
library_path + " of " +
- to_string(mod_version));
+ std::to_string(mod_version));
creator_func creator =
lib->resolve<creator_func>("create_engine");