pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] r2614 - trunk/src/worldmap


From: jave27
Subject: [Pingus-CVS] r2614 - trunk/src/worldmap
Date: Thu, 19 Jan 2006 20:57:29 +0100

Author: jave27
Date: 2006-01-19 20:57:19 +0100 (Thu, 19 Jan 2006)
New Revision: 2614

Modified:
   trunk/src/worldmap/metamap.cxx
   trunk/src/worldmap/metamap.hxx
Log:
Error caught by gcc & not VS.net

Modified: trunk/src/worldmap/metamap.cxx
===================================================================
--- trunk/src/worldmap/metamap.cxx      2006-01-19 19:49:39 UTC (rev 2613)
+++ trunk/src/worldmap/metamap.cxx      2006-01-19 19:57:19 UTC (rev 2614)
@@ -69,14 +69,14 @@
 
 // Parse the nodes and edges
 void
-MetaMap::parse_graph(FileReader &reader)
+MetaMap::parse_graph(FileReader reader)
 {
   path_graph = new PathGraph(this, reader);
 }
 
 // Parse the properties of this file
 void
-MetaMap::parse_properties(FileReader &reader)
+MetaMap::parse_properties(FileReader reader)
 {
        // Get beginning and ending nodes.
        std::string node_name;

Modified: trunk/src/worldmap/metamap.hxx
===================================================================
--- trunk/src/worldmap/metamap.hxx      2006-01-19 19:49:39 UTC (rev 2613)
+++ trunk/src/worldmap/metamap.hxx      2006-01-19 19:57:19 UTC (rev 2614)
@@ -77,10 +77,10 @@
        void parse_file(FileReader &reader);
 
        /** Parses the <head> section */
-       void parse_properties(FileReader &reader);
+       void parse_properties(FileReader reader);
 
        /** Parses the <graph> section */
-       void parse_graph(FileReader &reader);
+       void parse_graph(FileReader reader);
 
        MetaMap();
        MetaMap (const MetaMap&);





reply via email to

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