]> granicus.if.org Git - php/commit
Fix boolean conversion warnings
authorc9s <yoanlin93@gmail.com>
Thu, 22 Oct 2015 12:59:42 +0000 (20:59 +0800)
committerc9s <yoanlin93@gmail.com>
Thu, 22 Oct 2015 15:56:30 +0000 (23:56 +0800)
commitfdb1da9bed17e0b3c4d32a4c57b77938ef5c376a
tree5a4d7d4d0d4447aa4cd988204ea4019ac1ee2145
parent9f196352950e705a200e8ed3de87b83469f62b28
Fix boolean conversion warnings

Summary:

The compiler complains and raised some warnings about boolean
conversion:

    warning: address of 'ce->constants_table' will always evaluate to
    'true' [-Wpointer-bool-conversion]

Since the address of 'HashTable' will always evaluate to true. the
condition should be removed. The scope is kept for local variables.

Platform:

    OS X 10.11

Compiler:

    Apple LLVM version 7.0.0 (clang-700.0.72)
    Target: x86_64-apple-darwin15.0.0
    Thread model: posix
ext/reflection/php_reflection.c