diff options
author | David Robillard <d@drobilla.net> | 2020-12-16 11:05:49 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-16 11:06:32 +0100 |
commit | 4e083b4e0f33df50ed46ea30ff00b7232c29c632 (patch) | |
tree | a87266bbefd0623128671a7d9beb85e2f2c74482 /sord/sordmm.hpp | |
parent | b24584980534acef1b10e4bf8182fe347465c70e (diff) | |
download | sord-4e083b4e0f33df50ed46ea30ff00b7232c29c632.tar.gz sord-4e083b4e0f33df50ed46ea30ff00b7232c29c632.tar.bz2 sord-4e083b4e0f33df50ed46ea30ff00b7232c29c632.zip |
C++: Remove meaningless const qualifiers
Diffstat (limited to 'sord/sordmm.hpp')
-rw-r--r-- | sord/sordmm.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sord/sordmm.hpp b/sord/sordmm.hpp index 4cfe372..2fa8a51 100644 --- a/sord/sordmm.hpp +++ b/sord/sordmm.hpp @@ -447,17 +447,17 @@ struct Iter : public Wrapper<SordIter> { next(); return *this; } - inline const Node get_subject() const { + inline Node get_subject() const { SordQuad quad; sord_iter_get(_c_obj, quad); return Node(_world, quad[SORD_SUBJECT]); } - inline const Node get_predicate() const { + inline Node get_predicate() const { SordQuad quad; sord_iter_get(_c_obj, quad); return Node(_world, quad[SORD_PREDICATE]); } - inline const Node get_object() const { + inline Node get_object() const { SordQuad quad; sord_iter_get(_c_obj, quad); return Node(_world, quad[SORD_OBJECT]); |