mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Check that C++ compiler supports override keyword
If the compiler supports override, define CXX11_OVERRIDE as override, otherwise define it as empty. Use CXX11_OVERRIDE instead of override.
This commit is contained in:
parent
cce5b3206a
commit
28d5c7408f
15 changed files with 54 additions and 25 deletions
|
@ -30,12 +30,12 @@ class GZipDecodingStreamFilterTest:public CppUnit::TestFixture {
|
|||
public:
|
||||
MockSegment2():positionToWrite_(0) {}
|
||||
|
||||
virtual void updateWrittenLength(int32_t bytes) override
|
||||
virtual void updateWrittenLength(int32_t bytes) CXX11_OVERRIDE
|
||||
{
|
||||
positionToWrite_ += bytes;
|
||||
}
|
||||
|
||||
virtual int64_t getPositionToWrite() const override
|
||||
virtual int64_t getPositionToWrite() const CXX11_OVERRIDE
|
||||
{
|
||||
return positionToWrite_;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue