aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2013-02-17 06:26:04 +0000
committerMike Buland <eichlan@xagasoft.com>2013-02-17 06:26:04 +0000
commitc79fd5604d9cc252469bd7544fbd3eecc593b3e1 (patch)
treed1b2ba632540b6ab711321203eed7aea9970a4a4
parent032f6b43efd27585c30de7dfd48ad15247ed6a03 (diff)
downloadlibbu++-c79fd5604d9cc252469bd7544fbd3eecc593b3e1.tar.gz
libbu++-c79fd5604d9cc252469bd7544fbd3eecc593b3e1.tar.bz2
libbu++-c79fd5604d9cc252469bd7544fbd3eecc593b3e1.tar.xz
libbu++-c79fd5604d9cc252469bd7544fbd3eecc593b3e1.zip
Bu::StrArray was silly, added Bu::StringArray.
-rw-r--r--src/stable/optparser.h1
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 @@
20namespace Bu 20namespace 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