Small code tweak

This commit is contained in:
Maxime Coste 2015-03-19 23:33:44 +00:00
parent f5da1671fd
commit 5cf7d650c8

View File

@ -14,7 +14,7 @@ struct file_access_error : runtime_error
public:
file_access_error(StringView filename,
StringView error_desc)
: runtime_error(filename + ": "_str + error_desc) {}
: runtime_error(filename + ": " + error_desc) {}
};
struct file_not_found : file_access_error