mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-21 10:42:35 +00:00
Fix a simple think-o; NFC
This was using a bitwise OR of two boolean member variables, now it's using a logical OR instead.
This commit is contained in:
parent
aae97f8cd1
commit
8d7ded37a6
@ -206,7 +206,7 @@ public:
|
||||
void setIsGNUVarargs() { IsGNUVarargs = true; }
|
||||
bool isC99Varargs() const { return IsC99Varargs; }
|
||||
bool isGNUVarargs() const { return IsGNUVarargs; }
|
||||
bool isVariadic() const { return IsC99Varargs | IsGNUVarargs; }
|
||||
bool isVariadic() const { return IsC99Varargs || IsGNUVarargs; }
|
||||
|
||||
/// Return true if this macro requires processing before expansion.
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user