gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/trunk r10813: keep mingw32 happy, don't us


From: rob
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r10813: keep mingw32 happy, don't use the temporary variable far.
Date: Mon, 20 Apr 2009 14:07:45 -0600
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10813
committer: address@hidden
branch nick: trunk
timestamp: Mon 2009-04-20 14:07:45 -0600
message:
  keep mingw32 happy, don't use the temporary variable far.
modified:
  libcore/PropertyList.cpp
=== modified file 'libcore/PropertyList.cpp'
--- a/libcore/PropertyList.cpp  2009-02-25 22:33:03 +0000
+++ b/libcore/PropertyList.cpp  2009-04-20 20:07:45 +0000
@@ -229,7 +229,8 @@
        string_table& st = _vm.getStringTable();
 #endif
 
-       for (container::iterator it=_props.begin(), far=_props.end(); it != 
far; ++it)
+        PropertyList::container::iterator it;
+        for (it=_props.begin(); it != _props.end(); ++it)
        {
 #ifdef GNASH_DEBUG_PROPERTY
                as_prop_flags oldFlags = it->getFlags();


reply via email to

[Prev in Thread] Current Thread [Next in Thread]