From db0edaafe15831ba6fa9c2109da37942506c62b1 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 23 Jan 2016 11:14:05 +0200 Subject: Cleanup absolute/relative path diagnostics by introducing stream verbosity --- build2/types | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'build2/types') diff --git a/build2/types b/build2/types index 407a3b5..35aaa58 100644 --- a/build2/types +++ b/build2/types @@ -5,11 +5,13 @@ #ifndef BUILD2_TYPES #define BUILD2_TYPES +#include // ostream #include #include #include // pair #include // unique_ptr, shared_ptr #include // size_t +#include // uint{8,16,32,64}_t #include // reference_wrapper #include @@ -21,8 +23,13 @@ namespace build2 { // Commonly-used types. // - using std::pair; + using std::uint8_t; + using std::uint16_t; + using std::uint32_t; + using std::uint64_t; using std::size_t; + + using std::pair; using std::string; using std::unique_ptr; using std::shared_ptr; @@ -32,6 +39,10 @@ namespace build2 using strings = vector; using cstrings = vector; + // + // + using std::ostream; + // // using butl::path; -- cgit v1.1