summaryrefslogtreecommitdiffstats
path: root/hashtable.hxx.in
diff options
context:
space:
mode:
authorKWSys Robot <kwrobot@kitware.com>2014-05-05 12:58:12 (GMT)
committerBrad King <brad.king@kitware.com>2014-05-06 12:46:54 (GMT)
commit397bccbaa94e6d17d15d17af2158fa6325d5c1e9 (patch)
tree76aaac8069e65ab8b3e5ed3073808671365b009b /hashtable.hxx.in
parentc54be58309fbf9c2a5cfec8ba190c631e1db4a6c (diff)
downloadCMake-397bccbaa94e6d17d15d17af2158fa6325d5c1e9.zip
CMake-397bccbaa94e6d17d15d17af2158fa6325d5c1e9.tar.gz
CMake-397bccbaa94e6d17d15d17af2158fa6325d5c1e9.tar.bz2
KWSys 2014-05-05 (f3a36760)
Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ f3a36760 | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' 8b085635..f3a36760 Brad King (2): 1979c02d hashtable: Poison operator= on internal node type f3a36760 SystemInformation: Include backtrace APIs whenever we use them Change-Id: Ic90b29e4fbae139ab6c8bd7355661759153e0aa7
Diffstat (limited to 'hashtable.hxx.in')
-rw-r--r--hashtable.hxx.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/hashtable.hxx.in b/hashtable.hxx.in
index 62aa3f3..b93e9be 100644
--- a/hashtable.hxx.in
+++ b/hashtable.hxx.in
@@ -310,6 +310,9 @@ struct _Hashtable_node
{
_Hashtable_node* _M_next;
_Val _M_val;
+ void public_method_to_quiet_warning_about_all_methods_private();
+private:
+ void operator=(_Hashtable_node<_Val> const&); // poison node assignment
};
template <class _Val, class _Key, class _HashFcn,