diff options
author | freiro <f73b2894@opayq.com> | 2016-11-17 12:29:57 +0100 |
---|---|---|
committer | freiro <f73b2894@opayq.com> | 2016-11-19 15:50:16 +0100 |
commit | 3d75e3cd07a8c577d74aa1c7017c7ee5019e632d (patch) | |
tree | 99e6ce642a0406deaa87a4d4a283964a5ff9c10b /src/common/file_util.h | |
parent | 29bb82cb8e5c34eba174964099b2cdc04103de7b (diff) |
Return by value and other fixes
Diffstat (limited to 'src/common/file_util.h')
-rw-r--r-- | src/common/file_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/file_util.h b/src/common/file_util.h index 03cb222fef..4c5ab676e1 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h @@ -154,7 +154,7 @@ std::string GetBundleDirectory(); #ifdef _WIN32 std::string& GetExeDirectory(); -std::string& AppDataLocalDirectory(); +std::string AppDataLocalDirectory(); #endif size_t WriteStringToFile(bool text_file, const std::string& str, const char* filename); |