From 0cf585b2a7ab4255ee1c6dc6f331e730828b0115 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 11 Dec 2014 16:17:17 +0000 Subject: Correctly resolve file options path to an absolute path --- project2/files/optionsSource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project2/files/optionsSource.cpp b/project2/files/optionsSource.cpp index ed78be4..7c2dd2b 100644 --- a/project2/files/optionsSource.cpp +++ b/project2/files/optionsSource.cpp @@ -6,7 +6,7 @@ #include FileOptions::FileOptions(const boost::filesystem::path & f) : - file(boost::filesystem::current_path() / f) + file(boost::filesystem::absolute(f)) { } -- cgit v1.2.3