We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 32512da + f165bce commit 0d38130Copy full SHA for 0d38130
lib/Sema/TypeChecker.h
@@ -910,6 +910,8 @@ class TypeChecker final : public LazyResolver {
910
public:
911
TypeChecker(ASTContext &Ctx) : TypeChecker(Ctx, Ctx.Diags) { }
912
TypeChecker(ASTContext &Ctx, DiagnosticEngine &Diags);
913
+ TypeChecker(const TypeChecker&) = delete;
914
+ TypeChecker& operator=(const TypeChecker&) = delete;
915
~TypeChecker();
916
917
LangOptions &getLangOpts() const { return Context.LangOpts; }
0 commit comments