mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[FileCheck] Fixed -Wdeprecated-copy warning. NFCI.
This commit is contained in:
parent
b3bc90a098
commit
fadeb89a7b
@ -71,6 +71,7 @@ class FileCheckType {
|
||||
public:
|
||||
FileCheckType(FileCheckKind Kind = CheckNone) : Kind(Kind), Count(1) {}
|
||||
FileCheckType(const FileCheckType &) = default;
|
||||
FileCheckType &operator=(const FileCheckType &) = default;
|
||||
|
||||
operator FileCheckKind() const { return Kind; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user