aboutsummaryrefslogtreecommitdiff
path: root/bpkg/types
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-29 11:29:50 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-29 11:29:50 +0200
commitf5adc6c0ee7965abcad4cc73d0f36d1ed3cba3cc (patch)
tree209d8b593efc5cf525ae96f6bf69b356cdba9766 /bpkg/types
parentbbc1acd6e9e086c5bcfccac971c8ca4edd192765 (diff)
Complete pkg-status, rework object model
Diffstat (limited to 'bpkg/types')
-rw-r--r--bpkg/types5
1 files changed, 5 insertions, 0 deletions
diff --git a/bpkg/types b/bpkg/types
index e4e1340..a5bda0e 100644
--- a/bpkg/types
+++ b/bpkg/types
@@ -9,6 +9,7 @@
#include <string>
#include <memory> // shared_ptr, unique_ptr
#include <cstddef> // size_t
+#include <cstdint> // uint{8,16,32,64}_t
#include <ostream>
#include <odb/lazy-ptr.hxx>
@@ -20,6 +21,10 @@ namespace bpkg
{
// Commonly-used types.
//
+ using std::uint8_t;
+ using std::uint16_t;
+ using std::uint32_t;
+ using std::uint64_t;
using std::size_t;
using std::string;