diff options
author | Andy McFadden <fadden@android.com> | 2009-07-07 10:01:12 -0700 |
---|---|---|
committer | Andy McFadden <fadden@android.com> | 2009-07-07 10:01:12 -0700 |
commit | 74598566ba4190be4125cea2f087a813f450fbdf (patch) | |
tree | 845f829f4630e8f39574e3b3034c01f036028b83 /include | |
parent | 6e2863ec16828b77c494592410e6b01281596e87 (diff) | |
download | frameworks_base-74598566ba4190be4125cea2f087a813f450fbdf.zip frameworks_base-74598566ba4190be4125cea2f087a813f450fbdf.tar.gz frameworks_base-74598566ba4190be4125cea2f087a813f450fbdf.tar.bz2 |
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.
Diffstat (limited to 'include')
-rw-r--r-- | include/utils/List.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ protected: inline _NodePtr getNode() const { return mpNode; } + _NodePtr mpNode; /* should be private, but older gcc fails */ private: friend class List; - _NodePtr mpNode; }; public: |