From 8465a47472863957f0d53b20e20d5a65c5c7276d Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Wed, 20 May 2009 19:19:00 +0000 Subject: [PATCH] Fixed most tab and min/max issues from trunk inspection report [SVN r53141] --- .../exception/detail/exception_ptr_base.hpp | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/include/boost/exception/detail/exception_ptr_base.hpp b/include/boost/exception/detail/exception_ptr_base.hpp index 1a17ff2..d261c18 100644 --- a/include/boost/exception/detail/exception_ptr_base.hpp +++ b/include/boost/exception/detail/exception_ptr_base.hpp @@ -9,18 +9,18 @@ namespace boost { - namespace - exception_detail - { - class - exception_ptr_base - { - public: + namespace + exception_detail + { + class + exception_ptr_base + { + public: - virtual void _rethrow() const=0; - virtual bool _empty() const=0; - }; - } + virtual void _rethrow() const=0; + virtual bool _empty() const=0; + }; + } } #endif