diff options
-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 |