aboutsummaryrefslogtreecommitdiff
path: root/src/dbwrapper.h
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2017-03-09 13:34:54 +0100
committerpracticalswift <[email protected]>2017-07-25 13:46:52 +0200
commit6e8c48dc593d8b6e5cebd15a980074715223b572 (patch)
tree7977c539a2e3a2d344d156fc53fde9848dc84ca1 /src/dbwrapper.h
parentMerge #10865: Move CloseSocket out of SetSocketNonBlocking and pass socket as... (diff)
downloaddiscoin-6e8c48dc593d8b6e5cebd15a980074715223b572.tar.xz
discoin-6e8c48dc593d8b6e5cebd15a980074715223b572.zip
Add const to methods that do not modify the object for which it is called
Diffstat (limited to 'src/dbwrapper.h')
-rw-r--r--src/dbwrapper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbwrapper.h b/src/dbwrapper.h
index 24ef71bfb..2cbb47dba 100644
--- a/src/dbwrapper.h
+++ b/src/dbwrapper.h
@@ -130,7 +130,7 @@ public:
parent(_parent), piter(_piter) { };
~CDBIterator();
- bool Valid();
+ bool Valid() const;
void SeekToFirst();