diff options
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Format/FormatToken.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Format/FormatToken.h b/clang/lib/Format/FormatToken.h index 58cec43f108..8798f8fbe66 100644 --- a/clang/lib/Format/FormatToken.h +++ b/clang/lib/Format/FormatToken.h @@ -270,8 +270,8 @@ struct FormatToken { private: // Disallow copying. - FormatToken(const FormatToken &); - void operator=(const FormatToken &); + FormatToken(const FormatToken &) LLVM_DELETED_FUNCTION; + void operator=(const FormatToken &) LLVM_DELETED_FUNCTION; }; } // namespace format |