8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 16:43:03 +01:00

Remove 'virtual' specifier from overridden methods to please VS intellisense.

This commit is contained in:
Vlad Khorsun 2022-07-14 22:32:11 +03:00
parent 2e2221fd39
commit b7b5be00f2
3 changed files with 9 additions and 9 deletions

View File

@ -322,9 +322,9 @@ public:
bool initialize(Firebird::SharedMemoryBase*, bool) override;
void mutexBug(int osErrorCode, const char* text) override;
virtual USHORT getType() const override { return Firebird::SharedMemoryBase::SRAM_DATABASE_SNAPSHOT; }
virtual USHORT getVersion() const override { return MONITOR_VERSION; }
virtual const char* getName() const override { return "MonitoringData"; }
USHORT getType() const override { return Firebird::SharedMemoryBase::SRAM_DATABASE_SNAPSHOT; }
USHORT getVersion() const override { return MONITOR_VERSION; }
const char* getName() const override { return "MonitoringData"; }
void initSharedFile();

View File

@ -58,9 +58,9 @@ public:
bool initialize(Firebird::SharedMemoryBase*, bool) override;
void mutexBug(int osErrorCode, const char* text) override;
virtual USHORT getType() const override { return Firebird::SharedMemoryBase::SRAM_EVENT_MANAGER; }
virtual USHORT getVersion() const override { return EVENT_VERSION; }
virtual const char* getName() const override { return "EventManager";}
USHORT getType() const override { return Firebird::SharedMemoryBase::SRAM_EVENT_MANAGER; }
USHORT getVersion() const override { return EVENT_VERSION; }
const char* getName() const override { return "EventManager";}
void exceptionHandler(const Firebird::Exception& ex, ThreadFinishSync<EventManager*>::ThreadRoutine* routine);

View File

@ -219,9 +219,9 @@ namespace Replication
bool initialize(Firebird::SharedMemoryBase* shmem, bool init) override;
void mutexBug(int osErrorCode, const char* text) override;
virtual USHORT getType() const override { return Firebird::SharedMemoryBase::SRAM_CHANGELOG_STATE; }
virtual USHORT getVersion() const override { return STATE_VERSION; };
virtual const char* getName() const override { return "ChangeLog"; }
USHORT getType() const override { return Firebird::SharedMemoryBase::SRAM_CHANGELOG_STATE; }
USHORT getVersion() const override { return STATE_VERSION; };
const char* getName() const override { return "ChangeLog"; }
bool validateSegment(const Segment* segment)
{