diff options
author | Marius Kintel <marius@kintel.net> | 2013-11-23 16:19:01 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-11-23 16:19:01 (GMT) |
commit | ab102cec8518ffe1bc7ecefa7986e8390367c692 (patch) | |
tree | cf4629645f415fdd6692c55e5b6aee69effc3577 /src | |
parent | 2162aaed64d4c60c4821fbb89f7eae3e37130011 (diff) | |
parent | 34d7f37fe7d37a23b43cec2faaf90605204937e1 (diff) |
Merge pull request #550 from t-paul/ubuntu-fix
Fix compilation error on Ubuntu where uint32_t is not defined.
Diffstat (limited to 'src')
-rw-r--r-- | src/value.h | 3 |
1 files changed, 2 insertions, 1 deletions
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 <boost/variant.hpp> #include <boost/lexical_cast.hpp> #endif +#include <boost/cstdint.hpp> 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; |