From fd94706918d1d843205c798e94b5d9be5ae3513c Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 24 Sep 2024 18:10:16 +0300 Subject: [PATCH] Remove __CODEGUARD__ workarounds --- include/boost/smart_ptr/detail/sp_counted_impl.hpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/include/boost/smart_ptr/detail/sp_counted_impl.hpp b/include/boost/smart_ptr/detail/sp_counted_impl.hpp index 8c12ac9..231a0c2 100644 --- a/include/boost/smart_ptr/detail/sp_counted_impl.hpp +++ b/include/boost/smart_ptr/detail/sp_counted_impl.hpp @@ -133,13 +133,6 @@ public: #endif }; -// -// Borland's Codeguard trips up over the -Vx- option here: -// -#ifdef __CODEGUARD__ -# pragma option push -Vx- -#endif - template class BOOST_SYMBOL_VISIBLE sp_counted_impl_pd: public sp_counted_base { private: @@ -298,10 +291,6 @@ public: } }; -#ifdef __CODEGUARD__ -# pragma option pop -#endif - } // namespace detail } // namespace boost