From f50adff9997578a021c5fb1689852949e8e4d9b4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 17 Feb 2009 00:58:30 +0000 Subject: [PATCH] copying and assignment of sema seem unwise :) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64712 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/Sema.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h index a96618f5a9..3475b2dada 100644 --- a/lib/Sema/Sema.h +++ b/lib/Sema/Sema.h @@ -110,6 +110,8 @@ public: /// Sema - This implements semantic analysis and AST building for C. class Sema : public Action { + Sema(const Sema&); // DO NOT IMPLEMENT + void operator=(const Sema&); // DO NOT IMPLEMENT public: const LangOptions &LangOpts; Preprocessor &PP; -- 2.40.0