Revision: 55771
          http://sourceforge.net/p/brlcad/code/55771
Author:   starseeker
Date:     2013-06-13 21:52:01 +0000 (Thu, 13 Jun 2013)
Log Message:
-----------
Oops - add return to function call lines.

Modified Paths:
--------------
    brlcad/trunk/src/libbrep/opennurbs_ext.cpp

Modified: brlcad/trunk/src/libbrep/opennurbs_ext.cpp
===================================================================
--- brlcad/trunk/src/libbrep/opennurbs_ext.cpp  2013-06-13 21:47:08 UTC (rev 
55770)
+++ brlcad/trunk/src/libbrep/opennurbs_ext.cpp  2013-06-13 21:52:01 UTC (rev 
55771)
@@ -2363,14 +2363,14 @@
 bool
 SurfaceTree::isFlatU(ON_Plane *frames)
 {
-    ON_Surface_IsFlat_U(frames, BREP_SURFACE_FLATNESS);
+    return ON_Surface_IsFlat_U(frames, BREP_SURFACE_FLATNESS);
 }
 
 
 bool
 SurfaceTree::isFlatV(ON_Plane *frames)
 {
-    ON_Surface_IsFlat_V(frames, BREP_SURFACE_FLATNESS);
+    return ON_Surface_IsFlat_V(frames, BREP_SURFACE_FLATNESS);
 }
 
 

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 Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to