]> www.ginac.de Git - cln.git/blobdiff - src/complex/elem/cl_C_equal.cc
Replace unused macro with cl_unused.
[cln.git] / src / complex / elem / cl_C_equal.cc
index 813b8c45db151239176f9c2ac659102162ce862b..e2dcfddb3f0ad65b3e2a2ab608d7112a92dacab1 100644 (file)
@@ -1,7 +1,7 @@
 // equal().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
 #include "cln/complex.h"
@@ -9,7 +9,7 @@
 
 // Implementation.
 
-#include "cl_C.h"
+#include "complex/cl_C.h"
 #include "cln/real.h"
 
 namespace cln {
@@ -20,7 +20,7 @@ bool equal (const cl_N& x, const cl_N& y)
 // Falls beide reell, klar.
 // Falls x reell, y komplex: (= x (realpart y)) und (zerop (imagpart y)).
 // Falls x komplex, y reell: analog
-// Falls beide komplex: Realteile und Imaginärteile jeweils gleich?
+// Falls beide komplex: Realteile und Imaginärteile jeweils gleich?
        if (realp(x)) {
                DeclareType(cl_R,x);
                if (realp(y)) {