Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / runtime / gr_complex.h
index f705d95dcaa1660bba97c4503597f401c981b7de..32e996eef9db00d12e75f9ac2884643a2c03d6ad 100644 (file)
@@ -38,7 +38,7 @@ inline bool is_complex (short x) { return false;}
 
 // this doesn't really belong here, but there are worse places for it...
 
-#define ASSERT_COMPLEXES_EQUAL(expected,actual,delta)                  \
+#define CPPUNIT_ASSERT_COMPLEXES_EQUAL(expected,actual,delta)                  \
   CPPUNIT_ASSERT_DOUBLES_EQUAL (expected.real(), actual.real(), delta);        \
   CPPUNIT_ASSERT_DOUBLES_EQUAL (expected.imag(), actual.imag(), delta);