diff options
author | Logan Smith <logan.r.smith0@gmail.com> | 2020-07-16 20:36:46 -0700 |
---|---|---|
committer | Logan Smith <logan.r.smith0@gmail.com> | 2020-07-17 17:35:59 -0700 |
commit | 31eb83496fb4e41e322e19f162aeae885ed91301 (patch) | |
tree | 7555381c94c972c3e0822ab7c747cb6185166ec8 /llvm/unittests/Support/FileCheckTest.cpp | |
parent | 1bbed69059d5ac35c0775e8ed598a34628d8ba6d (diff) | |
download | llvm-31eb83496fb4e41e322e19f162aeae885ed91301.zip llvm-31eb83496fb4e41e322e19f162aeae885ed91301.tar.gz llvm-31eb83496fb4e41e322e19f162aeae885ed91301.tar.bz2 |
[llvm][NFC] Add missing 'override's in unittests/
Diffstat (limited to 'llvm/unittests/Support/FileCheckTest.cpp')
-rw-r--r-- | llvm/unittests/Support/FileCheckTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/FileCheckTest.cpp b/llvm/unittests/Support/FileCheckTest.cpp index 92975dc..8cf8234 100644 --- a/llvm/unittests/Support/FileCheckTest.cpp +++ b/llvm/unittests/Support/FileCheckTest.cpp @@ -104,7 +104,7 @@ struct ExpressionFormatParameterisedFixture SourceMgr SM; - void SetUp() { + void SetUp() override { ExpressionFormat::Kind Kind = GetParam(); AllowHex = Kind == ExpressionFormat::Kind::HexLower || Kind == ExpressionFormat::Kind::HexUpper; |