diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-02-11 20:30:42 -0800 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-02-11 20:30:42 -0800 |
commit | 19b88e3570cd9519c0efcc95204884479c73e1c7 (patch) | |
tree | 83301dc667aa404ba133366c79769abc431c27d4 /tools/bootstrp/cppdep.hxx | |
parent | b3e23b175a80631670a2c6fd0260c94599a99ccf (diff) |
Remove DECLARE_LIST( ByteStringList, ByteString * )
Alsp fixed some memory leeks.
Diffstat (limited to 'tools/bootstrp/cppdep.hxx')
-rw-r--r-- | tools/bootstrp/cppdep.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bootstrp/cppdep.hxx b/tools/bootstrp/cppdep.hxx index 4fbe785f5935..d180bd8b115a 100644 --- a/tools/bootstrp/cppdep.hxx +++ b/tools/bootstrp/cppdep.hxx @@ -26,12 +26,12 @@ * ************************************************************************/ -#include <tools/list.hxx> #include <tools/string.hxx> +#include <vector> #define PATH_SEP ":" #define DIR_SEP "/" -DECLARE_LIST( ByteStringList, ByteString * ) +typedef ::std::vector< ByteString* > ByteStringList; class CppDep { |