From b02519c95dbb8833ecd737b65e9ab665b04cd132 Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Tue, 8 Sep 2009 19:51:12 +0000 Subject: [PATCH] Since Program is basically a PID, it should be copyable. llvm-svn: 81248 --- include/llvm/System/Program.h | 4 ---- 1 file changed, 4 deletions(-) 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: