diff options
author | Mike Buland <eichlan@xagasoft.com> | 2013-02-17 06:26:04 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2013-02-17 06:26:04 +0000 |
commit | c79fd5604d9cc252469bd7544fbd3eecc593b3e1 (patch) | |
tree | d1b2ba632540b6ab711321203eed7aea9970a4a4 /src | |
parent | 032f6b43efd27585c30de7dfd48ad15247ed6a03 (diff) | |
download | libbu++-c79fd5604d9cc252469bd7544fbd3eecc593b3e1.tar.gz libbu++-c79fd5604d9cc252469bd7544fbd3eecc593b3e1.tar.bz2 libbu++-c79fd5604d9cc252469bd7544fbd3eecc593b3e1.tar.xz libbu++-c79fd5604d9cc252469bd7544fbd3eecc593b3e1.zip |
Bu::StrArray was silly, added Bu::StringArray.
Diffstat (limited to 'src')
-rw-r--r-- | src/stable/optparser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stable/optparser.h b/src/stable/optparser.h index 0b8ed24..a7448c0 100644 --- a/src/stable/optparser.h +++ b/src/stable/optparser.h | |||
@@ -20,6 +20,7 @@ | |||
20 | namespace Bu | 20 | namespace Bu |
21 | { | 21 | { |
22 | typedef Bu::Array<Bu::String> StrArray; | 22 | typedef Bu::Array<Bu::String> StrArray; |
23 | typedef Bu::Array<Bu::String> StringArray; | ||
23 | 24 | ||
24 | /** | 25 | /** |
25 | * POSIX/Gnu style command line parser. Handles long and short options in | 26 | * POSIX/Gnu style command line parser. Handles long and short options in |