commit | f460f19510f9119d7b441403f8f6ba0b7f5fc267 | [log] [tgz] |
---|---|---|
author | Andy McFadden <fadden@android.com> | Tue Jul 07 10:01:12 2009 -0700 |
committer | Andy McFadden <fadden@android.com> | Tue Jul 07 10:01:12 2009 -0700 |
tree | 19c0adcfcd1ad563a062f4e4753bb263ad5f8438 | |
parent | f6476d6967e3e5c46e1ea1e5096c31ad0fd528d1 [diff] [blame] |
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.
diff --git a/include/utils/List.h b/include/utils/List.h index 4041a89..403cd7f 100644 --- a/include/utils/List.h +++ b/include/utils/List.h
@@ -154,9 +154,9 @@ inline _NodePtr getNode() const { return mpNode; } + _NodePtr mpNode; /* should be private, but older gcc fails */ private: friend class List; - _NodePtr mpNode; }; public: