aboutsummaryrefslogtreecommitdiff
path: root/src/paramproc.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-01-07 16:48:35 +0000
committerMike Buland <eichlan@xagasoft.com>2009-01-07 16:48:35 +0000
commitaba7c45c2c69d402d1b6fc427cde5bfa4661a0e1 (patch)
tree5b3849a8190cdb8742b1f43f4b8bbb43c73ababe /src/paramproc.h
parent45e065bc4fc93731ea9a0543462bc7cf9e6084d7 (diff)
downloadlibbu++-aba7c45c2c69d402d1b6fc427cde5bfa4661a0e1.tar.gz
libbu++-aba7c45c2c69d402d1b6fc427cde5bfa4661a0e1.tar.bz2
libbu++-aba7c45c2c69d402d1b6fc427cde5bfa4661a0e1.tar.xz
libbu++-aba7c45c2c69d402d1b6fc427cde5bfa4661a0e1.zip
Corrected a couple of places where std:: classes were being used and shouldn't
have been. Also made the Unit tests actually use expected values, so you can mark a test as "expected fail" and it'll know. It also prints out cute reports at the end of each run.
Diffstat (limited to '')
-rw-r--r--src/paramproc.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/paramproc.h b/src/paramproc.h
index bd59948..b7dbae3 100644
--- a/src/paramproc.h
+++ b/src/paramproc.h
@@ -9,8 +9,7 @@
9#define BU_PARAM_PROC_H 9#define BU_PARAM_PROC_H
10 10
11#include <stdint.h> 11#include <stdint.h>
12#include <string> 12#include "bu/list.h"
13#include <list>
14#include "bu/fstring.h" 13#include "bu/fstring.h"
15 14
16namespace Bu 15namespace Bu
@@ -153,8 +152,8 @@ namespace Bu
153 Bu::FString sBanner; 152 Bu::FString sBanner;
154 ArgSpec *pBefore; 153 ArgSpec *pBefore;
155 } Banner; 154 } Banner;
156 std::list<Banner *> lBan; 155 Bu::List<Banner *> lBan;
157 std::list<ArgSpec *> lArg; 156 Bu::List<ArgSpec *> lArg;
158 }; 157 };
159} 158}
160 159