Remove stray enum keywords. MSVC sees this as a redeclaration at global scope.

llvm-svn: 219031
This commit is contained in:
Benjamin Kramer 2014-10-03 22:20:30 +00:00
parent fa9df7af07
commit 719772c269
1 changed files with 2 additions and 2 deletions

View File

@ -249,7 +249,7 @@ private:
bool isCMemFunction(const FunctionDecl *FD,
ASTContext &C,
AllocationFamily Family,
enum MemoryOperationKind) const;
MemoryOperationKind MemKind) const;
bool isStandardNewDelete(const FunctionDecl *FD, ASTContext &C) const;
///@}
ProgramStateRef MallocMemReturnsAttr(CheckerContext &C,
@ -526,7 +526,7 @@ bool MallocChecker::isMemFunction(const FunctionDecl *FD, ASTContext &C) const {
bool MallocChecker::isCMemFunction(const FunctionDecl *FD,
ASTContext &C,
AllocationFamily Family,
enum MemoryOperationKind MemKind) const {
MemoryOperationKind MemKind) const {
if (!FD)
return false;