diff options
-rw-r--r-- | include/clang/AST/Attr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/Attr.h b/include/clang/AST/Attr.h index 4242493024..62ca49fbf3 100644 --- a/include/clang/AST/Attr.h +++ b/include/clang/AST/Attr.h @@ -78,7 +78,7 @@ public: return ::operator new(Bytes, C, Alignment); } void operator delete(void *Ptr, ASTContext &C, - size_t Alignment = 16) throw() { + size_t Alignment) throw() { return ::operator delete(Ptr, C, Alignment); } |