aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/System
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2009-09-09 09:52:04 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2009-09-09 09:52:04 +0000
commit00456a75b37a9e1edda5a37657037001eb2deee9 (patch)
treeed8d4f246f8b661159825ad8d741bf140919f5a9 /include/llvm/System
parentfd1f9fef9648975b0a201da42797d12415eeb83a (diff)
downloadexternal_llvm-00456a75b37a9e1edda5a37657037001eb2deee9.zip
external_llvm-00456a75b37a9e1edda5a37657037001eb2deee9.tar.gz
external_llvm-00456a75b37a9e1edda5a37657037001eb2deee9.tar.bz2
Revert 81248 for now.
Program objects have ownership semantics on Windows. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81329 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System')
-rw-r--r--include/llvm/System/Program.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h
index 316585d..2a68c4a 100644
--- a/include/llvm/System/Program.h
+++ b/include/llvm/System/Program.h
@@ -32,6 +32,10 @@ namespace sys {
/// Opaque handle for target specific data.
void *Data_;
+ // Noncopyable.
+ Program(const Program& other);
+ Program& operator=(const Program& other);
+
/// @name Methods
/// @{
public: