[llvm-commits] [llvm] r81248 - /llvm/trunk/include/llvm/System/Program.h
Mikhail Glushenkov
foldr at codedgers.com
Tue Sep 8 12:51:13 PDT 2009
Author: foldr
Date: Tue Sep 8 14:51:12 2009
New Revision: 81248
URL: http://llvm.org/viewvc/llvm-project?rev=81248&view=rev
Log:
Since Program is basically a PID, it should be copyable.
Modified:
llvm/trunk/include/llvm/System/Program.h
Modified: llvm/trunk/include/llvm/System/Program.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/System/Program.h?rev=81248&r1=81247&r2=81248&view=diff
==============================================================================
--- llvm/trunk/include/llvm/System/Program.h (original)
+++ llvm/trunk/include/llvm/System/Program.h Tue Sep 8 14:51:12 2009
@@ -32,10 +32,6 @@
/// Opaque handle for target specific data.
void *Data_;
- // Noncopyable.
- Program(const Program& other);
- Program& operator=(const Program& other);
-
/// @name Methods
/// @{
public:
More information about the llvm-commits
mailing list