From 1229fa445b45866b6391fc9d8f6e9fd43091d8af Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Wed, 20 May 2009 19:41:20 +0000 Subject: [PATCH] Fixed almost all tab and min/max issues found by inspect tool [SVN r53142] --- .../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