We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50a64ef commit 3654d9fCopy full SHA for 3654d9f
llvm/include/llvm/Object/ELF.h
@@ -256,8 +256,10 @@ class ELFFile {
256
public:
257
LLVM_ELF_IMPORT_TYPES_ELFT(ELFT)
258
259
- // Default ctor required to instantiate the template for DLL export.
+ // Default ctor and copy assignment operator required to instantiate the
260
+ // template for DLL export.
261
ELFFile(const ELFFile &) = default;
262
+ ELFFile &operator=(const ELFFile &) = default;
263
264
// This is a callback that can be passed to a number of functions.
265
// It can be used to ignore non-critical errors (warnings), which is
0 commit comments