We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c73fab5 commit b77d1c7Copy full SHA for b77d1c7
include/lucene++/Collection.h
@@ -167,7 +167,7 @@ class Collection : public LuceneSync {
167
}
168
169
void swap(this_type& other) {
170
- container.swap(other->container);
+ container.swap(other.container);
171
172
173
TYPE& operator[] (int32_t pos) {
include/lucene++/Set.h
@@ -108,7 +108,7 @@ class Set : public LuceneSync {
108
109
110
111
- setContainer.swap(other->setContainer);
+ setContainer.swap(other.setContainer);
112
113
114
operator bool() const {
0 commit comments