From 18c4eeebdc1f757fd1140c7620bc3573d47c2592 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Wed, 22 May 2013 00:28:41 +0200 Subject: compile fix diff --git a/src/PlatformUtils-posix.cc b/src/PlatformUtils-posix.cc index e581de6..d7b7b6d 100644 --- a/src/PlatformUtils-posix.cc +++ b/src/PlatformUtils-posix.cc @@ -4,7 +4,7 @@ std::string PlatformUtils::documentsPath() { fs::path docpath(getenv("HOME")); - docpath /= ".local" / "share"; + docpath = docpath / ".local" / "share"; return boosty::stringy(docpath); } -- cgit v0.10.1