aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2011-05-15 13:13:50 -0400
committerGavin Andresen <[email protected]>2011-05-15 13:13:50 -0400
commitf441949515fb76acad2e5987f5fcddbd804ba5c5 (patch)
tree842c1e0a661ce353b74211b219376b1e322484cf /src
parentmake bitcoin include files more modular (diff)
downloaddiscoin-f441949515fb76acad2e5987f5fcddbd804ba5c5.tar.xz
discoin-f441949515fb76acad2e5987f5fcddbd804ba5c5.zip
Build error mingw, missing std::
Diffstat (limited to 'src')
-rw-r--r--src/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index b1eabd52d..e4bf0fb10 100644
--- a/src/util.h
+++ b/src/util.h
@@ -197,7 +197,7 @@ std::string GetPidFile();
void CreatePidFile(std::string pidFile, pid_t pid);
void ReadConfigFile(std::map<std::string, std::string>& mapSettingsRet, std::map<std::string, std::vector<std::string> >& mapMultiSettingsRet);
#ifdef __WXMSW__
-string MyGetSpecialFolderPath(int nFolder, bool fCreate);
+std::string MyGetSpecialFolderPath(int nFolder, bool fCreate);
#endif
std::string GetDefaultDataDir();
std::string GetDataDir();