Revision: 2155
http://supertuxkart.svn.sourceforge.net/supertuxkart/?rev=2155&view=rev
Author: auria
Date: 2008-07-10 13:43:46 -0700 (Thu, 10 Jul 2008)
Log Message:
-----------
fixed template parsing (C++ weakness)
Modified Paths:
--------------
trunk/supertuxkart/src/kart_properties_manager.hpp
Modified: trunk/supertuxkart/src/kart_properties_manager.hpp
===================================================================
--- trunk/supertuxkart/src/kart_properties_manager.hpp 2008-07-10 04:46:54 UTC (rev 2154)
+++ trunk/supertuxkart/src/kart_properties_manager.hpp 2008-07-10 20:43:46 UTC (rev 2155)
@@ -29,7 +29,7 @@
{
private:
std::vector<std::string> m_all_groups;
- std::map<std::string, std::vector<int>> m_groups;
+ std::map<std::string, std::vector<int> > m_groups;
protected:
float m_max_steer_angle;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|