Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1604 put CLI11 in vt namespace #1617

Merged
merged 1 commit into from
Dec 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/CLI/CLI/CLI11.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
#include <utility>
#include <vector>

namespace vt {



// Verbatim copy from CLI/Version.hpp:

Expand Down Expand Up @@ -8221,3 +8224,5 @@ inline std::string Formatter::make_option_usage(const Option *opt) const {

} // namespace CLI

} // namespace vt

7 changes: 5 additions & 2 deletions src/vt/configs/arguments/args.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,13 @@
#include <vector>
#include <tuple>

namespace vt {

namespace CLI {
class App;
} /* end namespace CLI */

namespace vt { namespace arguments {
namespace arguments {

/**
* \struct ArgConfig
Expand Down Expand Up @@ -108,6 +110,7 @@ struct ArgConfig : runtime::component::Component<ArgConfig> {
bool parsed_ = false;
};

}} /* end namespace vt::arguments */
} // namespace arguments
} // namespace vt

#endif /*INCLUDED_VT_CONFIGS_ARGUMENTS_ARGS_H*/