From e8945fbb15e472afca16fe1c3f36997742a2d64a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 2 Jul 2015 08:17:00 +0200 Subject: Common types cleanup (strings, cstrings) --- build/types | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'build/types') diff --git a/build/types b/build/types index 5f6b3de..0a71252 100644 --- a/build/types +++ b/build/types @@ -6,6 +6,7 @@ #define BUILD_TYPES #include +#include #include #include @@ -16,6 +17,8 @@ namespace build { // Commonly-used types. // + using strings = std::vector; + using cstrings = std::vector; // // @@ -24,6 +27,9 @@ namespace build using butl::basic_path; using butl::invalid_path; + using paths = std::vector; + using dir_paths = std::vector; + // // using butl::system_clock; @@ -32,9 +38,6 @@ namespace build using butl::timestamp_unknown; using butl::timestamp_nonexistent; using butl::operator<<; - - typedef std::vector paths; - typedef std::vector dir_paths; } #endif // BUILD_TYPES -- cgit v1.1