diff options
| author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2012-09-06 01:06:40 -0700 | 
|---|---|---|
| committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2012-09-06 01:06:40 -0700 | 
| commit | 0e479472c1cb418303ea61ade88870298730d847 (patch) | |
| tree | 25dfd87c21907b1369bc2b6d83daea6373c8028b /src/Dalos-cli.cc | |
| parent | 6e3bd47994d2709366c2a7ae12c48f114a6c7826 (diff) | |
Better off with a list instead of a vector.
Diffstat (limited to 'src/Dalos-cli.cc')
| -rw-r--r-- | src/Dalos-cli.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Dalos-cli.cc b/src/Dalos-cli.cc index 0b24f83..ab15256 100644 --- a/src/Dalos-cli.cc +++ b/src/Dalos-cli.cc @@ -37,7 +37,7 @@ static void showhelp(const char * binname, bool longhelp) {  }  void MainTask::Do() { -    std::vector<String> execs; +    std::list<String> execs;      bool interactive = false;      bool todo = false;      bool error = false;  | 
