aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/types.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2020-08-12 13:54:21 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2020-08-12 13:54:21 +0200
commitd72e5f95e70976f9b8bc29a7ace3c354e815ca49 (patch)
tree4ac1f39941be5c6cd57287e15a049ec4d62eb126 /libbuild2/types.hxx
parent446c6548a1b61a18a27e24320a53a66a3ef7008a (diff)
Add int64 and int64s variable types
Diffstat (limited to 'libbuild2/types.hxx')
-rw-r--r--libbuild2/types.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/libbuild2/types.hxx b/libbuild2/types.hxx
index 65e0918..dcf1a30 100644
--- a/libbuild2/types.hxx
+++ b/libbuild2/types.hxx
@@ -65,9 +65,11 @@ namespace build2
using std::uint8_t;
using std::uint16_t;
using std::uint32_t;
+ using std::int64_t;
using std::uint64_t;
using std::uintptr_t;
+ using int64s = std::vector<int64_t>;
using uint64s = std::vector<uint64_t>;
using std::size_t;