]> git.pld-linux.org Git - packages/crossmingw32-gcc.git/blob - gcc-libstdc++-wstring.patch
- allow override flags.
[packages/crossmingw32-gcc.git] / gcc-libstdc++-wstring.patch
1 # DP: enable definition of wstring type, if __ENABLE_WSTRING is defined.
2
3 --- libstdc++/string~   Sat Feb 20 13:21:49 1999
4 +++ libstdc++/string    Sun Dec  5 16:35:27 1999
5 @@ -7,7 +7,9 @@
6  
7  extern "C++" {
8  typedef basic_string <char> string;
9 -// typedef basic_string <wchar_t> wstring;
10 +#ifdef __ENABLE_WSTRING
11 +typedef basic_string <wchar_t> wstring;
12 +#endif
13  } // extern "C++"
14  
15  #endif
This page took 0.04609 seconds and 3 git commands to generate.