Skip to content

Commit e6ee958

Browse files
committed
Use final classes.
1 parent 3ed85c7 commit e6ee958

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/common/ipc/IpcNamedSignal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace Firebird {
4545

4646

4747
// An event in Windows, a semaphore in POSIX.
48-
class IpcNamedSignal
48+
class IpcNamedSignal final
4949
{
5050
public:
5151
explicit IpcNamedSignal(const string& name);

src/common/ipc/IpcSharedSignal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
namespace Firebird {
4343

4444

45-
class IpcSharedSignal
45+
class IpcSharedSignal final
4646
{
4747
public:
4848
explicit IpcSharedSignal();

0 commit comments

Comments
 (0)