[cfe-commits] r64712 - /cfe/trunk/lib/Sema/Sema.h
Chris Lattner
sabre at nondot.org
Mon Feb 16 16:58:30 PST 2009
Author: lattner
Date: Mon Feb 16 18:58:30 2009
New Revision: 64712
URL: http://llvm.org/viewvc/llvm-project?rev=64712&view=rev
Log:
copying and assignment of sema seem unwise :)
Modified:
cfe/trunk/lib/Sema/Sema.h
Modified: cfe/trunk/lib/Sema/Sema.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/Sema.h?rev=64712&r1=64711&r2=64712&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/Sema.h (original)
+++ cfe/trunk/lib/Sema/Sema.h Mon Feb 16 18:58:30 2009
@@ -110,6 +110,8 @@
/// 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;
More information about the cfe-commits
mailing list