diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-09-08 19:51:12 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-09-08 19:51:12 +0000 |
commit | 40e9b8e67071c3aa53f12ee46062f727c4ca80ed (patch) | |
tree | 41161c04dd24e505e4b997e023572c8219814150 | |
parent | edf8e48c216a10d1b867aba0308842116f83547b (diff) |
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
-rw-r--r-- | include/llvm/System/Program.h | 4 |
1 files changed, 0 insertions, 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: |