tabs removed, added protected inline dtors.

[SVN r45042]
This commit is contained in:
Emil Dotchevski
2008-05-02 20:51:31 +00:00
parent e1056d2f4a
commit d4a15cd9db
4 changed files with 20 additions and 8 deletions

View File

@ -20,6 +20,12 @@ boost
public:
virtual clone_base const * clone() const = 0;
protected:
~cloning_base() throw()
{
}
};
}
}

View File

@ -31,6 +31,12 @@ boost
virtual void add_ref() const=0;
virtual void release() const=0;
protected:
~counted_base() throw()
{
}
};
}
}