This should fix the build for now.

I can't reproduce the real problem.

Change-Id: I851d42eed6f5eb5e9b2b53859e97b43438676cc8
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 @@
 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)
 {
 }