Fixed almost all tab and min/max issues found by inspect tool

[SVN r53142]
This commit is contained in:
Jeremiah Willcock
2009-05-20 19:41:20 +00:00
parent de1a3daa85
commit 1229fa445b

View File

@ -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