diff options
| author | Julio Merino <jmmv@FreeBSD.org> | 2014-02-14 14:41:25 +0000 |
|---|---|---|
| committer | Julio Merino <jmmv@FreeBSD.org> | 2014-02-14 14:41:25 +0000 |
| commit | 8fee91db34c6746951ced9a348b36c5b758d576e (patch) | |
| tree | a986bed64ee725de3eb52c5f0838f6c59b8aa7d9 /bootstrap/h_app_opts_args.cpp | |
| parent | bf351e294647b19b2abb7e59344e619866206e71 (diff) | |
Notes
Diffstat (limited to 'bootstrap/h_app_opts_args.cpp')
| -rw-r--r-- | bootstrap/h_app_opts_args.cpp | 9 |
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(); } } |
