[Statepoints] Make operator bool() explicit.

(Addressing post-commit review.)

llvm-svn: 241288
This commit is contained in:
Sanjoy Das 2015-07-02 18:15:18 +00:00
parent ae9f2b9b24
commit b1ca4eb6ae
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public:
CallArgsBeginPos = 5, CallArgsBeginPos = 5,
}; };
operator bool() const { explicit operator bool() const {
// We do not assign non-statepoint CallSites to StatepointCS. // We do not assign non-statepoint CallSites to StatepointCS.
return (bool)StatepointCS; return (bool)StatepointCS;
} }