summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.cc b/config.cc
index 35c42137..a1ba6496 100644
--- a/config.cc
+++ b/config.cc
@@ -106,7 +106,8 @@ std::string expand_path(const std::string& path)
return result;
}
-inline std::string resolve_path(const std::string& path) {
+std::string resolve_path(const std::string& path)
+{
if (path[0] == '~')
return expand_path(path);
return path;