Skip to content
Snippets Groups Projects
Commit 282714ce authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'modern_poison'


95ced423 hashtable: delete assignment operator instead of poisoning it

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !125
parents 44676809 95ced423
No related branches found
No related tags found
1 merge request!125hashtable: delete assignment operator instead of poisoning it
......@@ -73,7 +73,7 @@ struct _Hashtable_node
void public_method_to_quiet_warning_about_all_methods_private();
private:
void operator=(_Hashtable_node<_Val> const&); // poison node assignment
void operator=(_Hashtable_node<_Val> const&) = delete;
};
template <class _Val, class _Key, class _HashFcn, class _ExtractKey,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment