added platform condition

This commit is contained in:
Martchus 2015-09-01 20:26:56 +02:00
parent 79faa46da0
commit ae494cc425
1 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,7 @@ bool confirmPrompt(const char *message, Response defaultResponse)
}
}
#ifdef PLATFORM_WINDOWS
/*!
* \brief Starts the console.
* \remarks This method is only available on Windows and used to start
@ -70,5 +71,6 @@ void startConsole()
// sync
ios::sync_with_stdio(true);
}
#endif
} // namespace ApplicationUtilities