Ticket #2370: boost_lexical_cast.patch

File boost_lexical_cast.patch, 595 bytes (added by Nicola Musatti, 14 years ago)
  • lexical_cast.hpp

     
    472472# pragma warning( push )
    473473// C4146: unary minus operator applied to unsigned type, result still unsigned
    474474# pragma warning( disable : 4146 )
     475#elif defined( __BORLANDC__ )
     476# pragma option push -w-8041
    475477#endif
    476478        template<class T>
    477479        inline
     
    483485        }
    484486#if (defined _MSC_VER)
    485487# pragma warning( pop )
     488#elif defined( __BORLANDC__ )
     489# pragma option pop
    486490#endif
    487491    }
    488492