From 7283d06294df46e0b2038c4da62dbbb3a676a181 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Thu, 15 Jan 2015 22:51:50 -0500 Subject: [PATCH] cosmetics --- src/value.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/value.cc b/src/value.cc index f519948c..cd467863 100644 --- a/src/value.cc +++ b/src/value.cc @@ -46,7 +46,7 @@ ValuePtr ValuePtr::undefined; std::ostream &operator<<(std::ostream &stream, const Filename &filename) { - fs::path fnpath = fs::path( (std::string)filename ); + fs::path fnpath = fs::path(filename); fs::path fpath = boostfs_uncomplete(fnpath, fs::current_path()); stream << QuotedString(boosty::stringy( fpath )); return stream;