CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Guillaume Melquiond <[EMAIL PROTECTED]> 05/01/21 21:21:45
Modified files:
src : astarnode.hpp
Log message:
Fix initialization order.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/astarnode.hpp.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
Patches:
Index: wesnoth/src/astarnode.hpp
diff -u wesnoth/src/astarnode.hpp:1.1 wesnoth/src/astarnode.hpp:1.2
--- wesnoth/src/astarnode.hpp:1.1 Fri Jan 21 20:16:43 2005
+++ wesnoth/src/astarnode.hpp Fri Jan 21 21:21:45 2005
@@ -1,4 +1,4 @@
-/* $Id: astarnode.hpp,v 1.1 2005/01/21 20:16:43 Sirp Exp $ */
+/* $Id: astarnode.hpp,v 1.2 2005/01/21 21:21:45 silene Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -78,7 +78,7 @@
a_star_node* getNodeFromLocation(gamemap::location const &loc, bool&
isCreated);
bool empty(void);
bool reallyEmpty(void);
- a_star_world(void) : _nbNode(0), _width(0) {};
+ a_star_world(void) : _width(0), _nbNode(0) {};
};
/*