File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ class CDBBatch
52
52
53
53
public:
54
54
/* *
55
- * @param[in] parent CDBWrapper that this batch is to be submitted to
55
+ * @param[in] _parent CDBWrapper that this batch is to be submitted to
56
56
*/
57
- CDBBatch (const CDBWrapper &parent ) : parent(parent ) { };
57
+ CDBBatch (const CDBWrapper &_parent ) : parent(_parent ) { };
58
58
59
59
template <typename K, typename V>
60
60
void Write (const K& key, const V& value)
@@ -94,11 +94,11 @@ class CDBIterator
94
94
public:
95
95
96
96
/* *
97
- * @param[in] parent Parent CDBWrapper instance.
98
- * @param[in] piterIn The original leveldb iterator.
97
+ * @param[in] _parent Parent CDBWrapper instance.
98
+ * @param[in] _piter The original leveldb iterator.
99
99
*/
100
- CDBIterator (const CDBWrapper &parent , leveldb::Iterator *piterIn ) :
101
- parent (parent ), piter(piterIn ) { };
100
+ CDBIterator (const CDBWrapper &_parent , leveldb::Iterator *_piter ) :
101
+ parent (_parent ), piter(_piter ) { };
102
102
~CDBIterator ();
103
103
104
104
bool Valid ();
You can’t perform that action at this time.
0 commit comments