remove spurious semicolon

This commit is contained in:
Dane Springmeyer 2011-04-02 03:08:16 +00:00
parent 8f4386b7b2
commit 9b1a33be5c

View file

@ -63,7 +63,7 @@ public:
metawriter_properties(boost::optional<std::string> str);
metawriter_properties() {};
template <class InputIterator> metawriter_properties(
InputIterator first, InputIterator last) : std::set<std::string>(first, last) {};
InputIterator first, InputIterator last) : std::set<std::string>(first, last) {}
std::string to_string() const;
};