diff options
Diffstat (limited to 'tools/aidl/options.h')
-rw-r--r-- | tools/aidl/options.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/aidl/options.h b/tools/aidl/options.h index ef4af6dc87ab..65d0961d27fc 100644 --- a/tools/aidl/options.h +++ b/tools/aidl/options.h @@ -16,15 +16,15 @@ enum { // This struct is the parsed version of the command line options struct Options { - int task; - bool failOnParcelable; + int task{COMPILE_AIDL}; + bool failOnParcelable{false}; vector<string> importPaths; vector<string> preprocessedFiles; string inputFileName; string outputFileName; string outputBaseFolder; string depFileName; - bool autoDepFile; + bool autoDepFile{false}; vector<string> filesToPreprocess; }; |