From 4eda02592ea1f426b153e9c9dade3d4e29fafd95 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 26 Jul 2013 19:32:49 -0400 Subject: [PATCH] fix debug.cpp error output (now compiles against libc++) --- src/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.cpp b/src/debug.cpp index f9a04fbc5..a9c4d7d9e 100644 --- a/src/debug.cpp +++ b/src/debug.cpp @@ -137,7 +137,7 @@ void logger::use_file(std::string const& filepath) else { std::stringstream s; - s << "cannot redirect log to file " << file_output_; + s << "cannot redirect log to file " << file_name_; throw std::runtime_error(s.str()); } }