summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-19 08:47:06 -0700
committerGitHub <noreply@github.com>2018-07-19 08:47:06 -0700
commit04f7a7036af107158195c8f8ea5e1ce58941141a (patch)
tree36fd7b4e013e1cc9d225ae2dfa9604eb7ef90618
parentcbf43225a9f0157d6bdf1f5116dcd2e0f45ccd70 (diff)
parent63e64f0131424708da5be6e64109f4909d65d057 (diff)
Merge pull request #705 from lioncash/string-ref
file_util: return string by const reference for GetExeDirectory()
-rw-r--r--src/common/file_util.cpp2
-rw-r--r--src/common/file_util.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index bf955386c..c882ab39f 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -592,7 +592,7 @@ std::string GetBundleDirectory() {
#endif
#ifdef _WIN32
-std::string& GetExeDirectory() {
+const std::string& GetExeDirectory() {
static std::string exe_path;
if (exe_path.empty()) {
wchar_t wchar_exe_path[2048];
diff --git a/src/common/file_util.h b/src/common/file_util.h
index 026c84d94..1f38b1560 100644
--- a/src/common/file_util.h
+++ b/src/common/file_util.h
@@ -133,7 +133,7 @@ std::string GetBundleDirectory();
#endif
#ifdef _WIN32
-std::string& GetExeDirectory();
+const std::string& GetExeDirectory();
std::string AppDataRoamingDirectory();
#endif