This is an automated email from the git hooks/post-receive script.

odyx pushed a commit to branch upstream/latest
in repository colobot.

commit 76ca4fc6aee237ff542817e68fcbeed7cf6e66c4
Author: krzys-h <krzy...@interia.pl>
Date:   Mon Nov 10 22:17:41 2014 +0100

    Fixed isnan() on MXE
---
 src/object/object.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/object/object.cpp b/src/object/object.cpp
index 6e386f3..7d8b4cf 100644
--- a/src/object/object.cpp
+++ b/src/object/object.cpp
@@ -1085,7 +1085,7 @@ bool CObject::Write(CLevelParserLine* line)
     for ( i=0 ; i<OBJECTMAXCMDLINE ; i++ )
     {
         value = GetCmdLine(i);
-        if ( isnan(value) )  break;
+        if ( std::isnan(value) )  break;
 
         cmdline.push_back(new CLevelParserParam(value));
     }

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-games/colobot.git

_______________________________________________
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

Reply via email to