Revision: 55602
          http://sourceforge.net/p/brlcad/code/55602
Author:   brlcad
Date:     2013-05-30 04:39:42 +0000 (Thu, 30 May 2013)
Log Message:
-----------
quell warning, false is not a pointer value

Modified Paths:
--------------
    brlcad/trunk/src/conv/step/OpenNurbsInterfaces.cpp

Modified: brlcad/trunk/src/conv/step/OpenNurbsInterfaces.cpp
===================================================================
--- brlcad/trunk/src/conv/step/OpenNurbsInterfaces.cpp  2013-05-30 00:41:22 UTC 
(rev 55601)
+++ brlcad/trunk/src/conv/step/OpenNurbsInterfaces.cpp  2013-05-30 04:39:42 UTC 
(rev 55602)
@@ -1249,11 +1249,12 @@
 Path::GetEdgeBounds(ON_Brep *brep)
 {
     ON_BoundingBox *u = NULL;
+
     LIST_OF_ORIENTED_EDGES::iterator i;
     for (i = edge_list.begin(); i != edge_list.end(); i++) {
        if (!(*i)->LoadONBrep(brep)) {
            std::cerr << "Error: " << entityname << "::LoadONBrep() - Error 
loading openNURBS brep." << std::endl;
-           return false;
+           return NULL;
        }
        if (u == NULL) {
            u = new ON_BoundingBox();

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


------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to