diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-14 12:50:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-14 12:50:08 +0200 |
commit | 00033cdacff5abd150976834a2010f8ff94365e8 (patch) | |
tree | 503d4002d0a6e63accd6d4507f1b893f6e1a94da | |
parent | c404e1e17f3385a3a0102158b271b0628736dfda (diff) |
Fix incorrect data member type
-rw-r--r-- | sqlite/types/test.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite/types/test.hxx b/sqlite/types/test.hxx index bd8f48a..fdaa541 100644 --- a/sqlite/types/test.hxx +++ b/sqlite/types/test.hxx @@ -45,7 +45,7 @@ struct object std::string text_; #ifdef _WIN32 - std::string wtext_; + std::wstring wtext_; #endif #pragma db type("BLOB") |