aboutsummaryrefslogtreecommitdiff
path: root/src/jtutil/test_norm.cc
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-29 16:18:19 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-29 16:18:19 +0000
commit96226e24b7f0856f2cd8f68e9c22adcd7d2946ad (patch)
tree0ff524fe7b3dd7732c455c424273be84082f0928 /src/jtutil/test_norm.cc
parentf90849f3ccd99793b71eb19d9c8f9a8c5f628158 (diff)
- rename "config.hh" to "config.h" since it's now C++/C/Fortran
minor code tweaks for better portability (std:: namespace stuff) - switch all (new-style) #include <cstdio> style includes back to (old-style) #include <stdio.h> style - drop all using std::printf; declarations - change all uses of std::min and std::max to jtuti:: instead - drop all explicit std:: qualifiers git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@777 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/jtutil/test_norm.cc')
-rw-r--r--src/jtutil/test_norm.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/jtutil/test_norm.cc b/src/jtutil/test_norm.cc
index 6f89030..b156873 100644
--- a/src/jtutil/test_norm.cc
+++ b/src/jtutil/test_norm.cc
@@ -1,11 +1,9 @@
// test_norm -- quick-n-dirty test of norm template class
// $Header$
-#include <cstdio>
-#include <cassert>
-#include <cmath>
-using std::printf;
-using std::sqrt;
+#include <stdio.h>
+#include <assert.h>
+#include <math.h>
#include "stdc.h"
#include "util.hh"