From: Mikhail Glushenkov Date: Tue, 8 Sep 2009 19:51:12 +0000 (+0000) Subject: Since Program is basically a PID, it should be copyable. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=40e9b8e67071c3aa53f12ee46062f727c4ca80ed;p=oota-llvm.git Since Program is basically a PID, it should be copyable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81248 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h index f92c3222b08..f6fe7946220 100644 --- a/include/llvm/System/Program.h +++ b/include/llvm/System/Program.h @@ -32,10 +32,6 @@ namespace sys { /// Opaque handle for target specific data. void *Data_; - // Noncopyable. - Program(const Program& other); - Program& operator=(const Program& other); - /// @name Methods /// @{ public: