Revision: 56926
          http://sourceforge.net/p/brlcad/code/56926
Author:   tbrowder2
Date:     2013-08-18 16:14:24 +0000 (Sun, 18 Aug 2013)
Log Message:
-----------
FIXME: stop gap measure: unless groupcnt is to be incremented, it could be a 
const char string; also itoa looks dangerous (but maybe not--however I would 
return a string)

Modified Paths:
--------------
    brlcad/trunk/src/conv/3dm/3dm-g.cpp

Modified: brlcad/trunk/src/conv/3dm/3dm-g.cpp
===================================================================
--- brlcad/trunk/src/conv/3dm/3dm-g.cpp 2013-08-18 16:07:25 UTC (rev 56925)
+++ brlcad/trunk/src/conv/3dm/3dm-g.cpp 2013-08-18 16:14:24 UTC (rev 56926)
@@ -155,7 +155,7 @@
        }
     }
     if (groupname.empty()) {
-       groupname = "g" + groupcnt;
+        groupname = "g" + itoa(groupcnt);
     }
 
     MEMBER_MAP::iterator iter = member_map.find(uuid);

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


------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with <2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to