From c0d0599781398c3fc1367d266b2d2ab9b33fe0c1 Mon Sep 17 00:00:00 2001 From: cignoni Date: Mon, 10 Dec 2012 09:10:19 +0000 Subject: [PATCH] reformatted for allowing a breakpoint in the exception --- vcg/complex/exception.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/complex/exception.h b/vcg/complex/exception.h index b77d9e02..9d623903 100644 --- a/vcg/complex/exception.h +++ b/vcg/complex/exception.h @@ -29,7 +29,10 @@ namespace vcg class MissingComponentException : public std::runtime_error { public: - MissingComponentException(const std::string &err):std::runtime_error(err) { std::cout << "Missing Component Exception -" << err << "- \n";} + MissingComponentException(const std::string &err):std::runtime_error(err) + { + std::cout << "Missing Component Exception -" << err << "- \n"; + } virtual const char *what() const throw () { static char buf[128]="Missing Component";