From 34d7f37fe7d37a23b43cec2faaf90605204937e1 Mon Sep 17 00:00:00 2001 From: Torsten Paul Date: Sat, 23 Nov 2013 15:12:44 +0100 Subject: Fix compilation error on Ubuntu where uint32_t is not defined. diff --git a/src/value.h b/src/value.h index 8197806..75dff2b 100644 --- a/src/value.h +++ b/src/value.h @@ -11,6 +11,7 @@ #include #include #endif +#include class QuotedString : public std::string { @@ -84,7 +85,7 @@ public: iterator begin() { return iterator(*this, RANGE_TYPE_BEGIN); } iterator end() { return iterator(*this, RANGE_TYPE_END); } - /// return number of steps, max uint32_ value if step is 0 + /// return number of steps, max uint32_t value if step is 0 uint32_t nbsteps() const; friend class tostring_visitor; -- cgit v0.10.1