summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm')
-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 316585da99..2a68c4a284 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: