Revision: 6455
          http://playerstage.svn.sourceforge.net/playerstage/?rev=6455&view=rev
Author:   robotos
Date:     2008-05-23 07:31:55 -0700 (Fri, 23 May 2008)

Log Message:
-----------
pedant warnings but avoid deprecation warnings (Ogre hits on it!)

Modified Paths:
--------------
    code/gazebo/trunk/SConstruct
    code/gazebo/trunk/TODO

Modified: code/gazebo/trunk/SConstruct
===================================================================
--- code/gazebo/trunk/SConstruct        2008-05-23 14:29:35 UTC (rev 6454)
+++ code/gazebo/trunk/SConstruct        2008-05-23 14:31:55 UTC (rev 6455)
@@ -84,9 +84,9 @@
 
 # Set the compile mode
 if env['mode'] == 'debug':
-  env['CCFLAGS'] += Split('-ggdb -g3')
+  env['CCFLAGS'] += Split('-ggdb -g2 -Wall -Wno-deprecated')
 elif env['mode'] == 'profile':
-  env['CCFLAGS'] += Split('-pg') 
+  env['CCFLAGS'] += Split('-ggdb -g2 -pg') 
   env['LINKFLAGS'] += Split('-pg') 
 elif env['mode'] == 'optimized':
   env['CCFLAGS'] += Split('-O3') 

Modified: code/gazebo/trunk/TODO
===================================================================
--- code/gazebo/trunk/TODO      2008-05-23 14:29:35 UTC (rev 6454)
+++ code/gazebo/trunk/TODO      2008-05-23 14:31:55 UTC (rev 6455)
@@ -73,10 +73,6 @@
 -Add "Angle" class, will handle ROTD and DTOR.
 -Templatize Vector, Quaternion, Pose
 - Replace all return int, with throws
-- Find something shorter for:
-   std::ostringstreaom stream;
-   stream << "This is an error message of type[" << type << "]\n";
-   gzthrow(stream.str());
 
 
 Completed:
@@ -119,4 +115,9 @@
 - Add in Pioneer blender models
 - Add check for libxml2
 - Add uninstall (scons -c automatically handles this!)
-- Use the Contact information in the Collision Callback. See CVS version of 
Gazebo.
+-- Find something shorter for:
+   std::ostringstreaom stream;
+   stream << "This is an error message of type[" << type << "]\n";
+   gzthrow(stream.str());
+
+ Use the Contact information in the Collision Callback. See CVS version of 
Gazebo.


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Playerstage-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/playerstage-commit

Reply via email to