mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
54d2419f77
- 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.
13 lines
398 B
C++
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
|
|
{
|