Added #pragma's to fix codeguard errors.

[SVN r14984]
This commit is contained in:
John Maddock
2002-08-20 11:08:11 +00:00
parent 92999be436
commit e84eb3f1ba

View File

@ -202,6 +202,13 @@ inline void intrusive_ptr_release(counted_base * p)
namespace detail
{
//
// Borland's Codeguard trips up over the -Vx- option here:
//
#ifdef __CODEGUARD__
#pragma option push -Vx-
#endif
template<class P, class D> class counted_base_impl: public counted_base
{
private:
@ -344,6 +351,11 @@ public:
}
};
#ifdef __CODEGUARD__
#pragma option pop
#endif
class weak_count
{
private: