|
|
|
@ -2,8 +2,9 @@
|
|
|
|
#include "cb/argparser/argument_parser.h"
|
|
|
|
#include "cb/argparser/argument_parser.h"
|
|
|
|
#include "cb/argparser/argument.h"
|
|
|
|
#include "cb/argparser/argument.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef CB_EXCLUDE_FORMATTED_PRINTS
|
|
|
|
#include <format>
|
|
|
|
#include <format>
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
cb::argparser::Argument::Argument(std::string content, cb::argparser::Type type) : content{std::move(content)}, type{type} {
|
|
|
|
cb::argparser::Argument::Argument(std::string content, cb::argparser::Type type) : content{std::move(content)}, type{type} {
|
|
|
|
if (type == Type::BOOL_TYPE && this->content == "false") {
|
|
|
|
if (type == Type::BOOL_TYPE && this->content == "false") {
|
|
|
|
|