1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[FileCheck] Fixed -Wdeprecated-copy warning. NFCI.

This commit is contained in:
Dávid Bolvanský 2019-11-23 19:28:28 +01:00
parent b3bc90a098
commit fadeb89a7b

View File

@ -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; }