[cpp-sp] branch main updated: Erase move c'tor/assignment.
Scott Cantor
cantor.2 at osu.edu
Thu Jun 12 17:25:13 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository cpp-sp.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=cd33d793f986a559bb4ac62bb0705c5648d3d054
The following commit(s) were added to refs/heads/main by this push:
new cd33d793 Erase move c'tor/assignment.
cd33d793 is described below
commit cd33d793f986a559bb4ac62bb0705c5648d3d054
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Jun 12 13:25:08 2025 -0400
Erase move c'tor/assignment.
---
shibsp/base.h | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/shibsp/base.h b/shibsp/base.h
index 996de001..647b919e 100644
--- a/shibsp/base.h
+++ b/shibsp/base.h
@@ -69,7 +69,9 @@
#define MAKE_NONCOPYABLE(type) \
private: \
type(const type&) = delete; \
- type& operator=(const type&) = delete
+ type& operator=(const type&) = delete; \
+ type(const type&&) = delete; \
+ type& operator=(type&&) = delete
/** Logging category for Service Provider functions. */
#define SHIBSP_LOGCAT "Shibboleth"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list