Bug 736220 - Remove previously unused and broken assert definition from logging.h. r=cjones

This commit is contained in:
Mike Hommey 2012-03-16 15:56:35 +01:00
Родитель 09c6670b5a
Коммит 048e8f2656
1 изменённых файлов: 0 добавлений и 6 удалений

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

@ -5,7 +5,6 @@
#ifndef BASE_LOGGING_H_ #ifndef BASE_LOGGING_H_
#define BASE_LOGGING_H_ #define BASE_LOGGING_H_
#include <assert.h>
#include <string> #include <string>
#include <cstring> #include <cstring>
@ -114,9 +113,4 @@ const mozilla::EmptyLog& operator <<(const mozilla::EmptyLog& log, const T&)
#define DCHECK_GE(v1, v2) DCHECK((v1) >= (v2)) #define DCHECK_GE(v1, v2) DCHECK((v1) >= (v2))
#define DCHECK_GT(v1, v2) DCHECK((v1) > (v2)) #define DCHECK_GT(v1, v2) DCHECK((v1) > (v2))
#ifdef assert
#undef assert
#endif
#define assert DLOG_ASSERT
#endif // BASE_LOGGING_H_ #endif // BASE_LOGGING_H_