id summary reporter owner description type status milestone component version severity resolution keywords cc 6127 lexical_cast in 1.48.0 broken for use on Android platform (wchar_t) michael-hofmann@… Antony Polukhin "Due to the use of wchar_t in lines 651-652 in boost/lexical_cast.hpp, compilation of translation units using the Android NDK (tested: r7) fail, since wchar_t on Android is not supported. The following change fixes the compile errors, although I did not check for correctness. 651: const wchar_t minus = lcast_char_constants::minus; 652: const wchar_t plus = lcast_char_constants::plus; -> 651: const CharT minus = lcast_char_constants::minus; 652: const CharT plus = lcast_char_constants::plus;" Bugs closed To Be Determined lexical_cast Boost 1.48.0 Problem fixed lexical_cast wchar_t android