Commit 5c945c17aed55b618e78a7efdf89c9aeb0274ee9
1 parent
a13d2a98
Fixed missing semicolon
Showing
1 changed file
with
1 additions
and
1 deletions
openbr/plugins/gallery/lmdb.cpp
| ... | ... | @@ -143,7 +143,7 @@ class lmdbGallery : public Gallery |
| 143 | 143 | if (!initialized) { |
| 144 | 144 | db = QSharedPointer<caffe::db::DB> (caffe::db::GetDB("lmdb")); |
| 145 | 145 | db->Open(file.name.toStdString(), caffe::db::NEW); |
| 146 | - observedLabels.clear() | |
| 146 | + observedLabels.clear(); | |
| 147 | 147 | initialized = true; |
| 148 | 148 | should_end = false; |
| 149 | 149 | // fire thread | ... | ... |