Skip to content

Commit

Permalink
libdeng2|StringPool: The 'data' argument of StringPool::iterate() is …
Browse files Browse the repository at this point in the history
…now optional
  • Loading branch information
danij-deng committed Jan 15, 2014
1 parent 95e2230 commit 25605e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/data/stringpool.h
Expand Up @@ -223,7 +223,7 @@ class DENG2_PUBLIC StringPool : public ISerializable
* @return @c 0 iff iteration completed wholly. Otherwise the non-zero value
* returned by @a callback.
*/
int iterate(int (*callback)(Id, void *), void *data) const;
int iterate(int (*callback)(Id, void *), void *data = 0) const;

// Implements ISerializable.
void operator >> (Writer &to) const;
Expand Down

0 comments on commit 25605e1

Please sign in to comment.