Disable copy and assignment.

committer: mfx <mfx> 972865495 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2000-10-30 00:24:55 +00:00
parent 49ced271e8
commit a53817b410

View File

@ -52,6 +52,11 @@ private:
int nsections;
int frozen;
int align_hack;
private:
// disable copy and assignment
Linker(Linker const &); // {}
Linker& operator= (Linker const &); // { return *this; }
};