]> www.ginac.de Git - ginac.git/blobdiff - cint/exam_paranoia.cpp
- Import namespace std globally.
[ginac.git] / cint / exam_paranoia.cpp
index 9852e4499df3b2899ff61dad72db588aaca6b13e..26dca05e35eea8009f77fefea3e92cf38aec2810 100755 (executable)
@@ -4,20 +4,20 @@ unsigned result = 0;
  * Old Cint versions messed up unary and binary operators:
  */
 {
-    symbol x;
-    ex a = x-x;
-    if (!a.is_zero()) {
-        ++result;
-    }
+       symbol x;
+       ex a = x-x;
+       if (!a.is_zero()) {
+               ++result;
+       }
 }
 /*
  * Some problems with objects of class relational when cast to bool:
  */
 {
-    symbol x;
-    ex a = x;
-    if (a != a) {
-        ++result;
-    }
+       symbol x;
+       ex a = x;
+       if (a != a) {
+               ++result;
+       }
 }
 exit(result);