diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-03-06 15:56:21 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-03-06 15:56:21 (GMT) |
commit | 12b8643feec59a48f548ab02c574d79000b84e87 (patch) | |
tree | fb7617c2e9925774315f1c67786a347de1c869b1 /Source/kwsys/hashtable.hxx.in | |
parent | cf3f5ce2bc40cd1e0546a5ab9cb2dee2c892054e (diff) | |
download | CMake-12b8643feec59a48f548ab02c574d79000b84e87.zip CMake-12b8643feec59a48f548ab02c574d79000b84e87.tar.gz CMake-12b8643feec59a48f548ab02c574d79000b84e87.tar.bz2 |
COMP: shut up w4 warning
Diffstat (limited to 'Source/kwsys/hashtable.hxx.in')
-rw-r--r-- | Source/kwsys/hashtable.hxx.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/kwsys/hashtable.hxx.in b/Source/kwsys/hashtable.hxx.in index 889fe15..5e395fc 100644 --- a/Source/kwsys/hashtable.hxx.in +++ b/Source/kwsys/hashtable.hxx.in @@ -39,6 +39,11 @@ #ifndef @KWSYS_NAMESPACE@_hashtable_hxx #define @KWSYS_NAMESPACE@_hashtable_hxx +/* turn off no assignment warning */ +#if defined(_MSC_VER) +# pragma warning ( disable : 4512 ) /* no assignment operator for class */ +#endif + #include <@KWSYS_NAMESPACE@/Configure.hxx> #include <@KWSYS_NAMESPACE@/cstddef> // size_t |