|
From: <log...@li...> - 2026-03-27 19:28:24
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Log4cpp Git repository.".
The branch, master has been updated
via e7fde8848b9a7f7d4fbf65b94a90c5c247bc2998 (commit)
via d024ee2c60198bc233de40417bad0ab416b079d9 (commit)
from 1c9cc027e9e9cdf2ca76295e32edb7c2771bcca1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/log4cpp/codegit/ci/
commit e7fde8848b9a7f7d4fbf65b94a90c5c247bc2998
Author: Alexander Perepelkin <san...@us...>
Date: Fri Mar 27 20:23:48 2026 +0100
Avoid calling virtual functions from constructor: make open() non-virtual to remove ambiguity.
diff --git a/include/log4cpp/IdsaAppender.hh b/include/log4cpp/IdsaAppender.hh
index 6ae90ae..fb39bec 100644
--- a/include/log4cpp/IdsaAppender.hh
+++ b/include/log4cpp/IdsaAppender.hh
@@ -55,7 +55,7 @@ namespace log4cpp {
/**
* Calls idsa_open().
**/
- virtual void open();
+ void open();
/**
* Sends a LoggingEvent to idsa.
diff --git a/include/log4cpp/RemoteSyslogAppender.hh b/include/log4cpp/RemoteSyslogAppender.hh
index 590e439..6903171 100644
--- a/include/log4cpp/RemoteSyslogAppender.hh
+++ b/include/log4cpp/RemoteSyslogAppender.hh
@@ -108,7 +108,7 @@ namespace log4cpp {
/**
* Just creates the socket.
**/
- virtual void open();
+ void open();
/**
* Sends a LoggingEvent to the remote syslog.
diff --git a/include/log4cpp/SyslogAppender.hh b/include/log4cpp/SyslogAppender.hh
index 8a99483..0fc6e8d 100644
--- a/include/log4cpp/SyslogAppender.hh
+++ b/include/log4cpp/SyslogAppender.hh
@@ -57,7 +57,7 @@ namespace log4cpp {
/**
* Calls openlog(3).
**/
- virtual void open();
+ void open();
/**
* Sends a LoggingEvent to syslog.
http://sourceforge.net/p/log4cpp/codegit/ci/
commit e7fde8848b9a7f7d4fbf65b94a90c5c247bc2998
Author: Alexander Perepelkin <san...@us...>
Date: Fri Mar 27 20:23:48 2026 +0100
Avoid calling virtual functions from constructor: make open() non-virtual to remove ambiguity.
diff --git a/include/log4cpp/IdsaAppender.hh b/include/log4cpp/IdsaAppender.hh
index 6ae90ae..fb39bec 100644
--- a/include/log4cpp/IdsaAppender.hh
+++ b/include/log4cpp/IdsaAppender.hh
@@ -55,7 +55,7 @@ namespace log4cpp {
/**
* Calls idsa_open().
**/
- virtual void open();
+ void open();
/**
* Sends a LoggingEvent to idsa.
diff --git a/include/log4cpp/RemoteSyslogAppender.hh b/include/log4cpp/RemoteSyslogAppender.hh
index 590e439..6903171 100644
--- a/include/log4cpp/RemoteSyslogAppender.hh
+++ b/include/log4cpp/RemoteSyslogAppender.hh
@@ -108,7 +108,7 @@ namespace log4cpp {
/**
* Just creates the socket.
**/
- virtual void open();
+ void open();
/**
* Sends a LoggingEvent to the remote syslog.
diff --git a/include/log4cpp/SyslogAppender.hh b/include/log4cpp/SyslogAppender.hh
index 8a99483..0fc6e8d 100644
--- a/include/log4cpp/SyslogAppender.hh
+++ b/include/log4cpp/SyslogAppender.hh
@@ -57,7 +57,7 @@ namespace log4cpp {
/**
* Calls openlog(3).
**/
- virtual void open();
+ void open();
/**
* Sends a LoggingEvent to syslog.
-----------------------------------------------------------------------
Summary of changes:
include/log4cpp/IdsaAppender.hh | 2 +-
include/log4cpp/NTEventLogAppender.hh | 6 +++---
include/log4cpp/RemoteSyslogAppender.hh | 2 +-
include/log4cpp/SyslogAppender.hh | 2 +-
src/NTEventLogAppender.cpp | 2 +-
5 files changed, 7 insertions(+), 7 deletions(-)
hooks/post-receive
--
Log4cpp Git repository.
|