diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2004-12-17 05:02:40 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2004-12-17 05:02:40 +0000 |
commit | c749af94ff9a33fb85e60079be85414bd2fca501 (patch) | |
tree | cd7623f30f27525b5751fcd2fbf09baa03985f8f /externals/grill/vasp/source | |
parent | f688c9de1efee2e09fbb9b39a715853b23fadcb3 (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')
-rw-r--r-- | externals/grill/vasp/source/util.h | 7 |
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; } |