aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vasp/source/util.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-12-17 05:02:40 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-12-17 05:02:40 +0000
commitc749af94ff9a33fb85e60079be85414bd2fca501 (patch)
treecd7623f30f27525b5751fcd2fbf09baa03985f8f /externals/grill/vasp/source/util.h
parentf688c9de1efee2e09fbb9b39a715853b23fadcb3 (diff)
avoid malicious file name characters
using flext build system remove legacy files svn path=/trunk/; revision=2395
Diffstat (limited to 'externals/grill/vasp/source/util.h')
-rw-r--r--externals/grill/vasp/source/util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/externals/grill/vasp/source/util.h b/externals/grill/vasp/source/util.h
index 859f37e7..7f7cd080 100644
--- a/externals/grill/vasp/source/util.h
+++ b/externals/grill/vasp/source/util.h
@@ -19,6 +19,13 @@ WARRANTIES, see the file, "license.txt," in this distribution.
#define BIG 1.e10
+#ifdef min
+#undef min
+#endif
+
+#ifdef max
+#undef max
+#endif
template<class T>
inline V swap(T &a,T &b) { T c = a; a = b; b = c; }