Second phase of changing NS_ENSURE() to NS_ENSURE_TRUE() and NS_ENSURE_NOT() to NS_ENSURE_FALSE(). r=hyatt

This commit is contained in:
tbogard%aol.net 1999-11-02 01:18:52 +00:00
Родитель 338766cb42
Коммит 209f598dcb
2 изменённых файлов: 0 добавлений и 8 удалений

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

@ -866,10 +866,6 @@ CallQueryInterface( nsISupports* aSource, DestinationType** aDestination )
#define NS_ENSURE_FALSE(x, ret) \
NS_ENSURE_TRUE(!(x), ret)
// Only here until I can get rid of all the callsites.
#define NS_ENSURE(x, ret) NS_ENSURE_TRUE(x, ret)
#define NS_ENSURE_NOT(x, ret) NS_ENSURE_FALSE(x, ret)
///////////////////////////////////////////////////////////////////////////////
// Macros for checking results
///////////////////////////////////////////////////////////////////////////////

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

@ -866,10 +866,6 @@ CallQueryInterface( nsISupports* aSource, DestinationType** aDestination )
#define NS_ENSURE_FALSE(x, ret) \
NS_ENSURE_TRUE(!(x), ret)
// Only here until I can get rid of all the callsites.
#define NS_ENSURE(x, ret) NS_ENSURE_TRUE(x, ret)
#define NS_ENSURE_NOT(x, ret) NS_ENSURE_FALSE(x, ret)
///////////////////////////////////////////////////////////////////////////////
// Macros for checking results
///////////////////////////////////////////////////////////////////////////////