Change _MSC_VER ifdef since MSVC++ .net 2003 has fixed one of their compiler bugs. b=208439 Patch from Ian Hickson <ian@hixie.ch>. r=dbaron sr=jag

This commit is contained in:
dbaron%dbaron.org 2003-06-05 18:50:16 +00:00
Родитель 27c26166cd
Коммит 015ab0d484
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1204,7 +1204,7 @@ operator!=( const U* lhs, const nsCOMPtr<T>& rhs )
// This is defined by an autoconf test, but VC++ also has a bug that
// prevents us from using these. (It also, fortunately, has the bug
// that we don't need them either.)
#ifdef _MSC_VER
#if defined(_MSC_VER) && (_MSC_VER < 1310)
#define NSCAP_DONT_PROVIDE_NONCONST_OPEQ
#endif