1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Revert 81248 for now.

Program objects have ownership semantics on Windows.

llvm-svn: 81329
This commit is contained in:
Mikhail Glushenkov 2009-09-09 09:52:04 +00:00
parent 13ec8a3393
commit 467895d1f7

View File

@ -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: