From e8c9b8c1d7817ccb4232791199cf5686b439eaa8 Mon Sep 17 00:00:00 2001 From: dellaert Date: Sun, 30 Nov 2014 16:08:08 +0100 Subject: [PATCH] Better message --- wrap/utilities.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } };