summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2011-11-03 17:05:10 -0700
committerJoe Onorato <joeo@google.com>2011-11-03 17:05:10 -0700
commit6e5cb4b38a96bc1ba2fe760b5e3d61a93e011ce6 (patch)
treecdfb52bc58e9c22cabacb5618bbfe1a5d7d254ea /tools
parent0ee2431b27b0a0a81ad2f967723dee627a8517a9 (diff)
downloadframeworks_base-6e5cb4b38a96bc1ba2fe760b5e3d61a93e011ce6.zip
frameworks_base-6e5cb4b38a96bc1ba2fe760b5e3d61a93e011ce6.tar.gz
frameworks_base-6e5cb4b38a96bc1ba2fe760b5e3d61a93e011ce6.tar.bz2
This should fix the build for now.
I can't reproduce the real problem. Change-Id: I851d42eed6f5eb5e9b2b53859e97b43438676cc8
Diffstat (limited to 'tools')
-rwxr-xr-xtools/aidl/Type.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/aidl/Type.cpp b/tools/aidl/Type.cpp
index b84b3c4..5348f1e 100755
--- a/tools/aidl/Type.cpp
+++ b/tools/aidl/Type.cpp
@@ -899,7 +899,8 @@ ListType::CreateFromRpcData(StatementBlock* addTo, Expression* k, Variable* v, V
UserDataType::UserDataType(const string& package, const string& name,
bool builtIn, bool canWriteToParcel, bool canWriteToRpcData,
const string& declFile, int declLine)
- :Type(package, name, builtIn ? BUILT_IN : USERDATA, canWriteToParcel, canWriteToRpcData,
+ //:Type(package, name, builtIn ? BUILT_IN : USERDATA, canWriteToParcel, canWriteToRpcData,
+ :Type(package, name, builtIn ? BUILT_IN : USERDATA, true, true,
true, declFile, declLine)
{
}