Skip to content
Snippets Groups Projects
Commit 8c80aef7 authored by Joaquim Casals Buñuel's avatar Joaquim Casals Buñuel
Browse files

Fix modernize-use-override warnings

parent b045d51f
No related branches found
No related tags found
2 merge requests!20new tag,!19new tag
This commit is part of merge request !20. Comments created here will be created in the context of that merge request.
...@@ -11,7 +11,7 @@ public: ...@@ -11,7 +11,7 @@ public:
NovatelRaw(); NovatelRaw();
~NovatelRaw(); ~NovatelRaw();
RawDataType addDataStream(const std::vector<uint8_t>& data_stream); RawDataType addDataStream(const std::vector<uint8_t>& data_stream) override;
}; };
} // namespace GnssUtils } // namespace GnssUtils
......
...@@ -11,7 +11,7 @@ public: ...@@ -11,7 +11,7 @@ public:
UBloxRaw(); UBloxRaw();
~UBloxRaw(); ~UBloxRaw();
RawDataType addDataStream(const std::vector<uint8_t>& data_stream); RawDataType addDataStream(const std::vector<uint8_t>& data_stream) override;
private: private:
......
...@@ -81,7 +81,7 @@ extern void ColoredPrintf(GTestColor color, const char* fmt, ...); ...@@ -81,7 +81,7 @@ extern void ColoredPrintf(GTestColor color, const char* fmt, ...);
class TestCout : public std::stringstream class TestCout : public std::stringstream
{ {
public: public:
~TestCout() ~TestCout() override
{ {
PRINTF("%s\n", str().c_str()); PRINTF("%s\n", str().c_str());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment