1
0
forked from 0ad/0ad

wchar_t/etc fixes

This was SVN commit r691.
This commit is contained in:
Ykkrosh 2004-07-10 20:44:28 +00:00
parent 970685e82c
commit 2dbaa2129f

View File

@ -18,11 +18,11 @@ namespace std {
#include <string>
#include "types.h"
typedef uint16_t utf16_t;
typedef std::basic_string<utf16_t> utf16string;
typedef std::basic_stringstream<utf16_t> utf16stringstream;
namespace std {
typedef uint16_t utf16_t;
typedef std::basic_string<utf16_t> utf16string;
typedef std::basic_stringstream<utf16_t> utf16stringstream;
template<>
struct char_traits<utf16_t>
{