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

Commit f460f195 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 f6476d69
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: