summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/include/gnuradio/gr_complex.h
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/gr_complex.h')
-rw-r--r--gnuradio-runtime/include/gnuradio/gr_complex.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/gnuradio-runtime/include/gnuradio/gr_complex.h b/gnuradio-runtime/include/gnuradio/gr_complex.h
index bd94c0f0f8..807f208b41 100644
--- a/gnuradio-runtime/include/gnuradio/gr_complex.h
+++ b/gnuradio-runtime/include/gnuradio/gr_complex.h
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2004 Free Software Foundation, Inc.
+ * Copyright 2004,2018 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -35,11 +35,5 @@ inline bool is_complex (int x) { (void) x; return false;}
inline bool is_complex (char x) { (void) x; return false;}
inline bool is_complex (short x) { (void) x; return false;}
-// this doesn't really belong here, but there are worse places for it...
-
-#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);
-
#endif /* INCLUDED_GR_COMPLEX_H */