summaryrefslogtreecommitdiff
path: root/bootstrap/h_app_opts_args.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/h_app_opts_args.cpp')
-rw-r--r--bootstrap/h_app_opts_args.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/bootstrap/h_app_opts_args.cpp b/bootstrap/h_app_opts_args.cpp
index 26d6be841e24e..f05a6b2bb130a 100644
--- a/bootstrap/h_app_opts_args.cpp
+++ b/bootstrap/h_app_opts_args.cpp
@@ -30,10 +30,9 @@
#include <cstdlib>
#include <iostream>
-#include "atf-c++/detail/application.hpp"
-#include "atf-c++/detail/sanity.hpp"
+#include "tools/application.hpp"
-class h_app_opts_args : public atf::application::app {
+class h_app_opts_args : public tools::application::app {
static const char* m_description;
std::string specific_args(void) const;
@@ -66,7 +65,7 @@ h_app_opts_args::options_set
h_app_opts_args::specific_options(void)
const
{
- using atf::application::option;
+ using tools::application::option;
options_set opts;
opts.insert(option('d', "", "Debug mode"));
opts.insert(option('v', "level", "Verbosity level"));
@@ -86,7 +85,7 @@ h_app_opts_args::process_option(int ch, const char* arg)
break;
default:
- UNREACHABLE;
+ std::abort();
}
}