From cffdfc2e03d6da97343b77afa94214e4924098ab Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Fri, 9 Oct 2020 10:58:06 +0200
Subject: [PATCH] [A/U/ME] Use TCLAP::SwitchArg instead of TCLAP::ValueArg.

---
 Applications/Utils/MeshEdit/ExtractBoundary.cpp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Applications/Utils/MeshEdit/ExtractBoundary.cpp b/Applications/Utils/MeshEdit/ExtractBoundary.cpp
index 09ae8bd27e2..54e13746bc2 100644
--- a/Applications/Utils/MeshEdit/ExtractBoundary.cpp
+++ b/Applications/Utils/MeshEdit/ExtractBoundary.cpp
@@ -71,9 +71,10 @@ int main (int argc, char* argv[])
         false, "bulk_face_ids", "string");
     cmd.add(face_prop_name);
 
-    TCLAP::ValueArg<bool> use_ascii_arg(
-        "", "ascii_output", "use ascii format for data in the vtu output (0=false, 1=true)", false,
-        false, "boolean value");
+    TCLAP::SwitchArg use_ascii_arg("", "ascii-output",
+                                   "If the switch is set use ascii instead of "
+                                   "binary format for data in the vtu output.",
+                                   false);
     cmd.add(use_ascii_arg);
 
     cmd.parse(argc, argv);
-- 
GitLab