[cpp-xmltooling] 02/02: Remove bogus const qualifiers.

Scott Cantor cantor.2 at osu.edu
Thu Dec 13 18:33:56 EST 2018


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch master
in repository cpp-xmltooling.

View the commit online:
http://git.shibboleth.net/view/?p=cpp-xmltooling.git;a=commit;h=92df9b3ba75c57316bd84dc72504b4736907e9a1

commit 92df9b3ba75c57316bd84dc72504b4736907e9a1
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Dec 13 18:33:49 2018 -0500

    Remove bogus const qualifiers.
---
 xmltooling/Namespace.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xmltooling/Namespace.h b/xmltooling/Namespace.h
index 0e97bbe..1cffaf2 100644
--- a/xmltooling/Namespace.h
+++ b/xmltooling/Namespace.h
@@ -78,13 +78,13 @@ namespace xmltooling {
          * Returns true iff the namespace should always be declared regardless of in-scope declarations
          * @return the alwaysDeclared setting
          */
-        const bool alwaysDeclare() const { return m_pinned; }
+        bool alwaysDeclare() const { return m_pinned; }
 
         /**
          * Returns the usage of the namespace by an XMLObject
          * @return the usage setting
          */
-        const namespace_usage_t usage() const { return m_usage; }
+        namespace_usage_t usage() const { return m_usage; }
 
         /**
          * Sets the namespace prefix

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list