mirror of https://github.com/roytam1/UXP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
332 B
11 lines
332 B
#define MOZ_IMPLICIT __attribute__((annotate("moz_implicit"))) |
|
|
|
struct Bad { |
|
operator bool(); // expected-error {{bad implicit conversion operator for 'Bad'}} expected-note {{consider adding the explicit keyword to 'operator bool'}} |
|
}; |
|
struct Good { |
|
explicit operator bool(); |
|
}; |
|
struct Okay { |
|
MOZ_IMPLICIT operator bool(); |
|
};
|
|
|