From 76f1590f1a5f2ed01ecd4cd2ed9224cdc55ab72c Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Sun, 20 Jan 2019 15:25:54 +0100 Subject: [PATCH] moved Complex to DSP namespace --- complex.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/complex.hh b/complex.hh index 00f6e68..d4dce63 100644 --- a/complex.hh +++ b/complex.hh @@ -6,6 +6,8 @@ Copyright 2018 Ahmet Inan #pragma once +namespace DSP { + template class Complex { @@ -118,3 +120,5 @@ static constexpr T arg(Complex a) return atan2(a.imag(), a.real()); } +} +