Remove useless void.

This commit is contained in:
Mark de Wever 2008-09-26 17:52:18 +00:00
parent af1855c10c
commit 30f1f337d7

View file

@ -40,7 +40,7 @@ public:
std::string::const_iterator begin() const { return string_.begin() + begin_; }
std::string::const_iterator end() const { return string_.begin() + end_; }
private:
void update(void);
void update();
const std::string& string_;
std::string::size_type begin_;