Revision: 64332
          http://sourceforge.net/p/brlcad/code/64332
Author:   indianlarry
Date:     2015-03-03 16:11:26 +0000 (Tue, 03 Mar 2015)
Log Message:
-----------
Final return statement accidentally caught in lines removed with preprocessor 
statement but needed for proper function return. Windows compiler would not let 
this pass so simply moved outside of CPP statement.

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

Modified: brlcad/trunk/src/libbrep/shape_recognition_torus.cpp
===================================================================
--- brlcad/trunk/src/libbrep/shape_recognition_torus.cpp        2015-03-03 
16:08:21 UTC (rev 64331)
+++ brlcad/trunk/src/libbrep/shape_recognition_torus.cpp        2015-03-03 
16:11:26 UTC (rev 64332)
@@ -82,8 +82,8 @@
 
     if (NEAR_ZERO(dotp, 0.000001)) return 0;
     if (dotp < 0) return 1;
+#endif
     return -1;
-#endif
 }
 
 

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


------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to