1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/astro/gpstk/files/patch-apps-swrx-IQStream.hpp
Alexey Dokuchaev 54d2419f77 - Stagify; unbreak the against Clang
- Allow for parallel (-jX) builds
- Cleanup Makefile while I'm at here
- Augment port description, fix WWW

N.b., there's version 2.4 available.
2014-07-23 05:17:15 +00:00

13 lines
398 B
C++

--- 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
{