summaryrefslogtreecommitdiff
path: root/astro/gpstk/files/patch-apps-swrx-IQStream.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'astro/gpstk/files/patch-apps-swrx-IQStream.hpp')
-rw-r--r--astro/gpstk/files/patch-apps-swrx-IQStream.hpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/astro/gpstk/files/patch-apps-swrx-IQStream.hpp b/astro/gpstk/files/patch-apps-swrx-IQStream.hpp
deleted file mode 100644
index 779ab9c4c5ce..000000000000
--- a/astro/gpstk/files/patch-apps-swrx-IQStream.hpp
+++ /dev/null
@@ -1,12 +0,0 @@
---- apps/swrx/IQStream.hpp.orig 2012-06-27 22:22:33 +0800
-+++ apps/swrx/IQStream.hpp
-@@ -130,6 +130,9 @@ namespace gpstk
- inline IQStream& operator<<(IQStream& s, const std::complex<float>& v)
- { s.writeComplex(v); return s; };
-
-+ inline IQStream& operator<<(IQStream& s, const std::complex<double>& v)
-+ { s.writeComplex(v); return s; };
-+
-
- class IQ1Stream : public IQStream
- {