diff --git a/wrap/utilities.h b/wrap/utilities.h index a4f71b6ad..fbc8dc7a2 100644 --- a/wrap/utilities.h +++ b/wrap/utilities.h @@ -67,7 +67,7 @@ private: const std::string what_; public: DependencyMissing(const std::string& dep, const std::string& loc) : - what_("Missing dependency " + dep + " in " + loc) {} + what_("Missing dependency '" + dep + "' in " + loc) {} ~DependencyMissing() throw() {} virtual const char* what() const throw() { return what_.c_str(); } };