Also use !bool instead of bool == false.pull/3302/head
parent
150351cfdd
commit
513051efcf
7 changed files with 7 additions and 7 deletions
@ -1,7 +0,0 @@ |
||||
#include <cstdlib> |
||||
|
||||
#include "libA.h" |
||||
|
||||
int main() { |
||||
return (meson_test_as_needed::linked == false ? EXIT_SUCCESS : EXIT_FAILURE); |
||||
} |
@ -0,0 +1,7 @@ |
||||
#include <cstdlib> |
||||
|
||||
#include "libA.h" |
||||
|
||||
int main() { |
||||
return !meson_test_as_needed::linked ? EXIT_SUCCESS : EXIT_FAILURE; |
||||
} |
Loading…
Reference in new issue