[Scummvm-cvs-logs] SF.net SVN: scummvm:[40171] scummvm/trunk/common/hashmap.h

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Tue Apr 28 12:23:09 CEST 2009


Revision: 40171
          http://scummvm.svn.sourceforge.net/scummvm/?rev=40171&view=rev
Author:   fingolfin
Date:     2009-04-28 10:23:08 +0000 (Tue, 28 Apr 2009)

Log Message:
-----------
fixed a typo

Modified Paths:
--------------
    scummvm/trunk/common/hashmap.h

Modified: scummvm/trunk/common/hashmap.h
===================================================================
--- scummvm/trunk/common/hashmap.h	2009-04-28 08:31:34 UTC (rev 40170)
+++ scummvm/trunk/common/hashmap.h	2009-04-28 10:23:08 UTC (rev 40171)
@@ -211,7 +211,7 @@
 	uint size() const { return _size; }
 
 	iterator	begin() {
-		// Find and return the _key non-empty entry
+		// Find and return the first non-empty entry
 		for (uint ctr = 0; ctr <= _mask; ++ctr) {
 			if (_storage[ctr])
 				return iterator(ctr, this);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list