Avoid unknown pragma GCC diagnostic warning on GCC < 9

pull/336/head
Jonathan G Rennison 3 years ago
parent 0c9a7e1cbb
commit c4e3c2cd75

@ -726,7 +726,9 @@ class btree_node {
#ifndef _MSC_VER
#pragma GCC diagnostic push
#if (__GNUC__ >= 9)
#pragma GCC diagnostic ignored "-Wdeprecated-copy"
#endif
#endif /* _MSC_VER */
template <typename Node, typename Reference, typename Pointer>

Loading…
Cancel
Save