Skip to content

Commit 1c5f874

Browse files
[Driver] Fix a warning
This patch fixes: clang/include/clang/Driver/Driver.h:82:3: error: definition of implicit copy assignment operator for 'CUIDOptions' is deprecated because it has a user-declared copy constructor [-Werror,-Wdeprecated-copy]
1 parent 0360f81 commit 1c5f874

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

clang/include/clang/Driver/Driver.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ class CUIDOptions {
7979
enum class Kind { Hash, Random, Fixed, None, Invalid };
8080

8181
CUIDOptions() = default;
82-
CUIDOptions(const CUIDOptions &) = default;
8382
CUIDOptions(llvm::opt::DerivedArgList &Args, const Driver &D);
8483

8584
// Get the CUID for an input string

0 commit comments

Comments
 (0)