Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[Manta] r1739 - trunk/Core/Math


Chronological Thread 
  • From: thiago@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [Manta] r1739 - trunk/Core/Math
  • Date: Mon, 24 Sep 2007 08:41:58 -0600 (MDT)

Author: thiago
Date: Mon Sep 24 08:41:57 2007
New Revision: 1739

Modified:
   trunk/Core/Math/ExponSSE.cc
Log:
cmath and stdio.h were being included only through other files that
were included only when MANTA_SSE was defined. So non-sse code didn't
compile.



Modified: trunk/Core/Math/ExponSSE.cc
==============================================================================
--- trunk/Core/Math/ExponSSE.cc (original)
+++ trunk/Core/Math/ExponSSE.cc Mon Sep 24 08:41:57 2007
@@ -1,5 +1,8 @@
 #include <Core/Math/ExponSSE.h>
 
+#include <cmath>
+#include <stdio.h>
+
 // Don't set this outside the range [1,5]
 #ifndef SERIES_ITERATIONS
 #define SERIES_ITERATIONS 3




  • [Manta] r1739 - trunk/Core/Math, thiago, 09/24/2007

Archive powered by MHonArc 2.6.16.

Top of page