Code quality: Fixed issue with to_string for proper compilation on Cygwin GCC

This commit is contained in:
Philippe Tillet
2015-08-06 20:20:08 -07:00
parent 33fea11547
commit 1399404f04
12 changed files with 36 additions and 30 deletions

View File

@@ -9,7 +9,7 @@ void android_main(struct android_app* state)
app_dummy(); // Make sure glue isn't stripped
__android_log_print(ANDROID_LOG_INFO, "IsaacAndroidTest", "This is a test");
isaac::array test(5, isaac::FLOAT_TYPE);
__android_log_print(ANDROID_LOG_INFO, "IsaacAndroidTest", isaac::std::to_string(test).c_str());
__android_log_print(ANDROID_LOG_INFO, "IsaacAndroidTest", isaac::tools::to_string(test).c_str());
ANativeActivity_finish(state->activity);
}