Changes between Initial Version and Version 1 of Ticket #12202, comment 5
- Timestamp:
- Jul 10, 2015, 4:18:38 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12202, comment 5
initial v1 2 2 > You can force enabling of it by using -D_GLIBCXX_USE_C99 in you command line arguments, if the implementation of std::to_string is inlined in header files. I did something similar with _GLIBCXX_USE_C99_MATH in the WebKit port (https://github.com/haiku/webkit/blob/rebased/Source/cmake/OptionsHaiku.cmake) so I could use std::isinf and a few other methods from #include <math>. 3 3 4 Interesting, I'll give that a try. 4 5 Interesting, I'll give that a try. The compiler is already being passed -std=c++0x and I thought that would have been sufficient.