Lines Matching refs:boolean
41 bool boolean = floating;
42 // ^ propose replacement: bool boolean = floating != 0.0f;
59 bool boolean;
60 functionTakingInt(boolean);
61 // ^ propose replacement: functionTakingInt(static_cast<int>(boolean));
69 - integer expression/literal to boolean (conversion from a single bit bitfield
70 to boolean is explicitly allowed, since there's no ambiguity / information
73 - floating expression/literal to boolean,
75 - pointer/pointer to member/``nullptr``/``NULL`` to boolean,
77 - boolean expression/literal to integer (conversion from boolean to a single
80 - boolean expression/literal to floating.
87 - ``bool boolean = floating;`` is changed to
88 ``bool boolean = floating == 0.0f;``,
102 - ``int integer = boolean;`` is changed to
103 ``int integer = static_cast<int>(boolean);``,