X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Fcomplex%2Fmisc%2Fcl_C_conjugate.cc;h=4c33e0498999f90d1e1bee837f35b1ae0962af64;hb=a742499cd43104bdcf77697360edeac32b07f01e;hp=1a6e8e17363c56477ab211f734c796c0441eaadd;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/complex/misc/cl_C_conjugate.cc b/src/complex/misc/cl_C_conjugate.cc index 1a6e8e1..4c33e04 100644 --- a/src/complex/misc/cl_C_conjugate.cc +++ b/src/complex/misc/cl_C_conjugate.cc @@ -4,13 +4,15 @@ #include "cl_sysdep.h" // Specification. -#include "cl_complex.h" +#include "cln/complex.h" // Implementation. #include "cl_C.h" -#include "cl_real.h" +#include "cln/real.h" + +namespace cln { const cl_N conjugate (const cl_N& x) { @@ -24,3 +26,5 @@ const cl_N conjugate (const cl_N& x) return complex_C(a,-b); } } + +} // namespace cln