updated to clean up compiler issues with how functions were used from basis namespace;
[feisty_meow.git] / graphiq / library / geometric / math_bits.h
index 50c5ff436f7dd87189714622ad9fc1db0878d692..2df27a2dede3ff4cf51f849f52532fe44dd91ae3 100644 (file)
@@ -41,7 +41,7 @@ type. */
 template <class numeric_type>
 bool is_floating_point(numeric_type t)
     { t = numeric_type(5.1); t = numeric_type(t * 3.0);
-          return 0.001 < float(absolute_value(numeric_type(t - 15.0))); }
+          return 0.001 < float(basis::absolute_value(numeric_type(t - 15.0))); }
 
 //! returns true if the instantiation type is an integer.
 template <class numeric_type>