1
0

Android build cleanup (#4734)

* Android build cleanup

* Remove unnecessary workaround

* Remove more unnecessities

* Bump cmake version
This commit is contained in:
Mat
2020-05-10 19:18:28 +03:00
committed by GitHub
parent 84289a2ba9
commit e053f72db8
6 changed files with 17 additions and 45 deletions

View File

@@ -10,20 +10,6 @@
#ifdef ANDROID
// Workaround for Android NDK builds that do not support std::to_string
namespace std
{
template <typename T>
std::string to_string(T Value)
{
std::ostringstream TempStream;
TempStream << Value;
return TempStream.str();
}
}
#endif
#ifdef _MSC_VER
#include <dbghelp.h>
#endif // _MSC_VER