Fix sim build.

Looks like older gcc (4.1.x) doesn't properly handle templated
fanciness.  Apparently that's what we have on the build server.
This commit is contained in:
Andy McFadden 2009-07-07 10:01:12 -07:00 committed by Alex Ray
parent bd875d2638
commit 34ed82706a

View file

@ -154,9 +154,9 @@ protected:
inline _NodePtr getNode() const { return mpNode; }
_NodePtr mpNode; /* should be private, but older gcc fails */
private:
friend class List;
_NodePtr mpNode;
};
public: