summaryrefslogtreecommitdiff
path: root/astro/gpstk/files/patch-apps-swrx-IQStream.hpp
blob: 779ab9c4c5ce9498c5b944453f069bd800cd93f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
--- 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
    {