Skip to content
This repository has been archived by the owner on Sep 30, 2018. It is now read-only.

Commit

Permalink
typedef std::wstring instead of removing wstring functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Phaeodaria committed Jun 2, 2011
1 parent 6b19647 commit c9cd396
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions xbmc/utils/StdString.h
Expand Up @@ -7,6 +7,14 @@
#define va_copy(dst, src) ((dst) = (src))
#endif

#if defined(__ANDROID__)
namespace std
{
typedef basic_string<wchar_t> wstring;
}
#endif


// =============================================================================
// FILE: StdString.h
// AUTHOR: Joe O'Leary (with outside help noted in comments)
Expand Down

0 comments on commit c9cd396

Please sign in to comment.