From: Wolfgang Bangerth Date: Wed, 18 Mar 2015 23:39:04 +0000 (-0500) Subject: Remove exceptions that are either unused or available in the global namespace. X-Git-Tag: v8.3.0-rc1~360^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ba888865fa5db8db6a043c2853b8b67ac62808f;p=dealii.git Remove exceptions that are either unused or available in the global namespace. --- diff --git a/include/deal.II/base/tensor_function.h b/include/deal.II/base/tensor_function.h index 7b92000d2d..f7196f00da 100644 --- a/include/deal.II/base/tensor_function.h +++ b/include/deal.II/base/tensor_function.h @@ -102,19 +102,6 @@ public: */ virtual void gradient_list (const std::vector > &points, std::vector &gradients) const; - - /** - * Exception - */ - DeclException0 (ExcPureFunctionCalled); - /** - * Exception - */ - DeclException2 (ExcVectorHasWrongSize, - int, int, - << "The vector has size " << arg1 << " but should have " - << arg2 << " elements."); - };