Remove tabs in file.

[SVN r24043]
This commit is contained in:
Rene Rivera
2004-07-25 17:12:17 +00:00
parent d6405ddd54
commit 0c28649d0b
4 changed files with 14 additions and 14 deletions

View File

@ -10,7 +10,7 @@
struct node_base
{
node_base() : m_next(0) {}
node_base() : m_next(0) {}
virtual ~node_base()
{
@ -34,7 +34,7 @@ struct node_base
}
private:
node_base* m_next;
node_base* m_next;
};
inline std::ostream& operator<<(std::ostream& s, node_base const& n)