string - C++ std::basic_string/char_traits specialization -


this related to:

std::basic_string specialization , circumventing template specialization

i tried solution std::basic_string specialization, problem customchar typedef wchar_t , have redefinition(conflict specialization std). how may avoid usage of chart_traits when i'm not allowed change customchar typedef?

you use boost's/c++0x's disable_if disable if there known previous instantiations, in case of char , wchar_t.


Comments