Change boolean options to bool instead of int
[deliverable/binutils-gdb.git] / gdb / cli / cli-utils.h
index cbe8ff66e15da48dae50da5f0d45f29afff8971d..33b8663e9ae9ddc9ee79b6ee3246daa8102dfaa1 100644 (file)
@@ -215,9 +215,9 @@ check_for_argument (char **str, const char *arg)
 
 struct qcs_flags
 {
-  int quiet = false;
-  int cont = false;
-  int silent = false;
+  bool quiet = false;
+  bool cont = false;
+  bool silent = false;
 };
 
 /* Validate FLAGS.  Throws an error if both FLAGS->CONT and
This page took 0.024647 seconds and 4 git commands to generate.