“8f156b5e2e222167172f1f2dae32ead2adcf9001”上不存在“develop/doc/howto/cmd_parameter/index_en.html”
Created by: sneaxiy
To avoid InferNoNeedBufferVarsFN
convert to bool implicitly.
For example, the following codes would work previously:
void fun(int a) {...}
InferNoNeedBufferVarsFN f;
fun(f); // f is converted to int implicitly.
After this PR, the implicit conversion is prohibited. The codes above would not be compiled right.