Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 74598566 authored by Andy McFadden's avatar Andy McFadden
Browse files

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.
parent 6e2863ec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: