summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndy McFadden <fadden@android.com>2009-07-07 10:01:12 -0700
committerAndy McFadden <fadden@android.com>2009-07-07 10:01:12 -0700
commit74598566ba4190be4125cea2f087a813f450fbdf (patch)
tree845f829f4630e8f39574e3b3034c01f036028b83 /include
parent6e2863ec16828b77c494592410e6b01281596e87 (diff)
downloadframeworks_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.h2
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: