| 51 | //android ndk does not support std::to_string function. |
| 52 | template <typename T> |
| 53 | std::string to_string(T value) |
| 54 | { |
| 55 | std::ostringstream os; |
| 56 | os << value; |
| 57 | return os.str(); |
| 58 | } |
| 59 | |
| 60 | //--------------------------------------------------------------- |
| 61 | void ValidatePointer(const void* ptr, std::string const& descName, std::string const& paramName) |