Bug 560383, part 2: (storage directory) Use "!!" for converting int to bool, to avoid MSVC compile warning. r=sdwilsh

This commit is contained in:
Daniel Holbert 2010-05-06 11:53:12 -07:00
Родитель 64d359bae4
Коммит d0096803e1
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -129,7 +129,7 @@ public:
* @return true if the statement has parameters to bind against, false
* otherwise.
*/
inline bool hasParametersToBeBound() const { return mParamsArray != nsnull; }
inline bool hasParametersToBeBound() const { return !!mParamsArray; }
/**
* Indicates if this statement needs a transaction for execution.
*