diff options
Diffstat (limited to 'option.h')
-rw-r--r-- | option.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ #ifndef _OPTION_H #define _OPTION_H -#include <deque> +#include <list> #include <string> struct option_handler { @@ -23,7 +23,7 @@ void register_option(const std::string& label, const std::string& opt_chars, option_handler& option); bool process_option(const std::string& opt, const char * arg = NULL); void process_arguments(int argc, char ** argv, const bool anywhere, - std::deque<std::string>& args); + std::list<std::string>& args); void process_environment(char ** envp, const std::string& tag); #endif // _OPTION_H |