[cpp-sp] 03/03: Fix member init warning.
Codeberg
noreply at shibboleth.net
Tue Jun 16 17:04:57 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository cpp-sp.
View the commit online:
https://codeberg.org/Shibboleth/cpp-sp/commit/9fbe14d0f22d5d95b3a513f33027ae68d5955821
commit 9fbe14d0f22d5d95b3a513f33027ae68d5955821
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Jun 16 13:04:35 2026 -0400
Fix member init warning.
---
shibsp/logging/impl/AbstractLoggingService.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/shibsp/logging/impl/AbstractLoggingService.cpp b/shibsp/logging/impl/AbstractLoggingService.cpp
index e10da0ee..ca02863f 100644
--- a/shibsp/logging/impl/AbstractLoggingService.cpp
+++ b/shibsp/logging/impl/AbstractLoggingService.cpp
@@ -74,7 +74,8 @@ LoggingServiceSPI::~LoggingServiceSPI() {}
AbstractLoggingService::~AbstractLoggingService() {}
-AbstractLoggingService::AbstractLoggingService(const ptree& pt) : m_config(pt)
+AbstractLoggingService::AbstractLoggingService(const ptree& pt)
+ : m_defaultPriority(Priority::PriorityLevel::SHIB_INFO), m_config(pt)
{
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list