@@ -44,7 +44,7 @@ class BoundsCheckTest : public testing::Test
4444{
4545public:
4646
47- virtual std::uint64_t encodeHdr (char *buffer, std::uint64_t offset, std::uint64_t bufferLength)
47+ std::uint64_t encodeHdr (char *buffer, std::uint64_t offset, std::uint64_t bufferLength)
4848 {
4949 m_hdr.wrap (buffer, offset, 0 , bufferLength)
5050 .blockLength (Car::sbeBlockLength ())
@@ -55,7 +55,7 @@ class BoundsCheckTest : public testing::Test
5555 return m_hdr.encodedLength ();
5656 }
5757
58- virtual std::uint64_t decodeHdr (char *buffer, std::uint64_t offset, std::uint64_t bufferLength)
58+ std::uint64_t decodeHdr (char *buffer, std::uint64_t offset, std::uint64_t bufferLength)
5959 {
6060 m_hdrDecoder.wrap (buffer, offset, 0 , bufferLength);
6161
@@ -67,7 +67,7 @@ class BoundsCheckTest : public testing::Test
6767 return m_hdrDecoder.encodedLength ();
6868 }
6969
70- virtual std::uint64_t encodeCarRoot (char *buffer, std::uint64_t offset, std::uint64_t bufferLength)
70+ std::uint64_t encodeCarRoot (char *buffer, std::uint64_t offset, std::uint64_t bufferLength)
7171 {
7272 m_car.wrapForEncode (buffer, offset, bufferLength)
7373 .serialNumber (SERIAL_NUMBER)
@@ -95,7 +95,7 @@ class BoundsCheckTest : public testing::Test
9595 return m_car.encodedLength ();
9696 }
9797
98- virtual std::uint64_t encodeCarFuelFigures ()
98+ std::uint64_t encodeCarFuelFigures ()
9999 {
100100 Car::FuelFigures& fuelFigures = m_car.fuelFiguresCount (3 );
101101
@@ -114,7 +114,7 @@ class BoundsCheckTest : public testing::Test
114114 return m_car.encodedLength ();
115115 }
116116
117- virtual std::uint64_t encodeCarPerformanceFigures ()
117+ std::uint64_t encodeCarPerformanceFigures ()
118118 {
119119 Car::PerformanceFigures &perfFigs = m_car.performanceFiguresCount (2 );
120120
@@ -135,7 +135,7 @@ class BoundsCheckTest : public testing::Test
135135 return m_car.encodedLength ();
136136 }
137137
138- virtual std::uint64_t encodeCarManufacturerModelAndActivationCode ()
138+ std::uint64_t encodeCarManufacturerModelAndActivationCode ()
139139 {
140140 m_car.putManufacturer (MANUFACTURER, static_cast <int >(strlen (MANUFACTURER)));
141141 m_car.putModel (MODEL, static_cast <int >(strlen (MODEL)));
@@ -144,7 +144,7 @@ class BoundsCheckTest : public testing::Test
144144 return m_car.encodedLength ();
145145 }
146146
147- virtual std::uint64_t decodeCarRoot (char *buffer, const std::uint64_t offset, const std::uint64_t bufferLength)
147+ std::uint64_t decodeCarRoot (char *buffer, const std::uint64_t offset, const std::uint64_t bufferLength)
148148 {
149149 m_carDecoder.wrapForDecode (buffer, offset, Car::sbeBlockLength (), Car::sbeSchemaVersion (), bufferLength);
150150 EXPECT_EQ (m_carDecoder.serialNumber (), SERIAL_NUMBER);
@@ -178,7 +178,7 @@ class BoundsCheckTest : public testing::Test
178178 return m_carDecoder.encodedLength ();
179179 }
180180
181- virtual std::uint64_t decodeCarFuelFigures ()
181+ std::uint64_t decodeCarFuelFigures ()
182182 {
183183 char tmp[256 ];
184184 Car::FuelFigures &fuelFigures = m_carDecoder.fuelFigures ();
@@ -208,7 +208,7 @@ class BoundsCheckTest : public testing::Test
208208 return m_carDecoder.encodedLength ();
209209 }
210210
211- virtual std::uint64_t decodeCarPerformanceFigures ()
211+ std::uint64_t decodeCarPerformanceFigures ()
212212 {
213213 Car::PerformanceFigures &performanceFigures = m_carDecoder.performanceFigures ();
214214 EXPECT_EQ (performanceFigures.count (), 2u );
@@ -258,7 +258,7 @@ class BoundsCheckTest : public testing::Test
258258 return m_carDecoder.encodedLength ();
259259 }
260260
261- virtual std::uint64_t decodeCarManufacturerModelAndActivationCode ()
261+ std::uint64_t decodeCarManufacturerModelAndActivationCode ()
262262 {
263263 char tmp[256 ];
264264
0 commit comments