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
commitf460f19510f9119d7b441403f8f6ba0b7f5fc267 (patch)
tree19c0adcfcd1ad563a062f4e4753bb263ad5f8438 /include
parentf6476d6967e3e5c46e1ea1e5096c31ad0fd528d1 (diff)
downloadframeworks_native-f460f19510f9119d7b441403f8f6ba0b7f5fc267.zip
frameworks_native-f460f19510f9119d7b441403f8f6ba0b7f5fc267.tar.gz
frameworks_native-f460f19510f9119d7b441403f8f6ba0b7f5fc267.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: