diff options
Diffstat (limited to 'tools/libclang/IndexingContext.h')
-rw-r--r-- | tools/libclang/IndexingContext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/libclang/IndexingContext.h b/tools/libclang/IndexingContext.h index 31fddfb..4da6aeb 100644 --- a/tools/libclang/IndexingContext.h +++ b/tools/libclang/IndexingContext.h @@ -245,8 +245,8 @@ class AttrListInfo { SmallVector<CXIdxAttrInfo *, 2> CXAttrs; unsigned ref_cnt; - AttrListInfo(const AttrListInfo &) LLVM_DELETED_FUNCTION; - void operator=(const AttrListInfo &) LLVM_DELETED_FUNCTION; + AttrListInfo(const AttrListInfo &) = delete; + void operator=(const AttrListInfo &) = delete; public: AttrListInfo(const Decl *D, IndexingContext &IdxCtx); |