summaryrefslogtreecommitdiff
path: root/option.h
diff options
context:
space:
mode:
Diffstat (limited to 'option.h')
-rw-r--r--option.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/option.h b/option.h
index 44ca5b3b..fe073274 100644
--- a/option.h
+++ b/option.h
@@ -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