diff options
author | Nicolas 'Pixel' Noble <pixel@nobis-crew.org> | 2013-01-20 00:26:29 -0800 |
---|---|---|
committer | Nicolas 'Pixel' Noble <pixel@nobis-crew.org> | 2013-01-20 00:26:29 -0800 |
commit | 78d9b284f1879725c071a348c0542c0ff31ab4da (patch) | |
tree | fdf53804763f4a4ad69d4358ab9930177675d9a9 /includes/BString.h | |
parent | 71aba2fccba167f7c402f5f603e6f980b709b07e (diff) |
Tentatively adding vsscanf to win32 compilation. Untested tho.
Diffstat (limited to 'includes/BString.h')
-rw-r--r-- | includes/BString.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/includes/BString.h b/includes/BString.h index f8f9710..f472d85 100644 --- a/includes/BString.h +++ b/includes/BString.h @@ -12,6 +12,10 @@ #include <string> #include <vector> +#ifdef _WIN32 +int vsscanf(const char *, const char *, va_list); +#endif + namespace Balau { class String : private std::string { |