@@ -126,7 +126,7 @@ struct DebugLineBasicFixture : public Test, public CommonFixture {};
126126struct DebugLineParameterisedFixture
127127 : public TestWithParam<std::pair<uint16_t , DwarfFormat>>,
128128 public CommonFixture {
129- void SetUp () { std::tie (Version, Format) = GetParam (); }
129+ void SetUp () override { std::tie (Version, Format) = GetParam (); }
130130
131131 uint16_t Version;
132132 DwarfFormat Format;
@@ -328,7 +328,7 @@ TEST_F(DebugLineBasicFixture, ErrorForReservedLength) {
328328
329329struct DebugLineUnsupportedVersionFixture : public TestWithParam <uint16_t >,
330330 public CommonFixture {
331- void SetUp () { Version = GetParam (); }
331+ void SetUp () override { Version = GetParam (); }
332332
333333 uint16_t Version;
334334};
@@ -1384,7 +1384,7 @@ struct TruncatedPrologueFixture
13841384 : public TestWithParam<
13851385 std::tuple<uint64_t , uint64_t , uint16_t , DwarfFormat, StringRef>>,
13861386 public CommonFixture {
1387- void SetUp () {
1387+ void SetUp () override {
13881388 std::tie (Length, ExpectedOffset, Version, Format, ExpectedErr) = GetParam ();
13891389 }
13901390
@@ -1554,7 +1554,7 @@ struct TruncatedStandardOpcodeFixture
15541554 : public TestWithParam<
15551555 std::tuple<uint64_t , uint8_t , ValueAndLengths, StringRef, StringRef>>,
15561556 public TruncatedOpcodeFixtureBase {
1557- void SetUp () {
1557+ void SetUp () override {
15581558 std::tie (BodyLength, Opcode, Operands, ExpectedOutput, ExpectedErr) =
15591559 GetParam ();
15601560 }
@@ -1564,7 +1564,7 @@ struct TruncatedExtendedOpcodeFixture
15641564 : public TestWithParam<std::tuple<uint64_t , uint64_t , uint8_t ,
15651565 ValueAndLengths, StringRef, StringRef>>,
15661566 public TruncatedOpcodeFixtureBase {
1567- void SetUp () {
1567+ void SetUp () override {
15681568 std::tie (BodyLength, OpcodeLength, Opcode, Operands, ExpectedOutput,
15691569 ExpectedErr) = GetParam ();
15701570 }
0 commit comments