Merge pull request #550 from t-paul/ubuntu-fix

Fix compilation error on Ubuntu where uint32_t is not defined.
brodykenrick-master
Marius Kintel 2013-11-23 08:19:01 -08:00
commit ab102cec85
1 changed files with 2 additions and 1 deletions

View File

@ -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;