From f2211877a96fbb015d01c911f2a083a4afa09cfd Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Wed, 12 Jun 2013 14:20:34 +0200 Subject: Homogeneous use of vmime::string. --- src/exception.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/exception.cpp') diff --git a/src/exception.cpp b/src/exception.cpp index a341c161..f223a1bb 100644 --- a/src/exception.cpp +++ b/src/exception.cpp @@ -292,7 +292,7 @@ const char* no_object_found::name() const throw() { return "no_object_found"; } no_such_property::~no_such_property() throw() {} no_such_property::no_such_property(const string& name, const exception& other) - : exception(std::string("No such property: '") + name + string("'."), other) { } + : exception(string("No such property: '") + name + string("'."), other) { } exception* no_such_property::clone() const { return new no_such_property(*this); } const char* no_such_property::name() const throw() { return "no_such_property"; } -- cgit v1.2.3