Commit 5735462e7083ffc7c265c454f2994bea583aeb22
1 parent
c0a647bd
Hopefully silence some warnings from clang
Showing
1 changed file
with
5 additions
and
1 deletions
openbr/plugins/process.cpp
| ... | ... | @@ -527,6 +527,10 @@ class ProcessWrapperTransform : public WrapperTransform |
| 527 | 527 | return this; |
| 528 | 528 | } |
| 529 | 529 | |
| 530 | + // make clang shut up? what a great compiler | |
| 531 | + using WrapperTransform::project; | |
| 532 | + using WrapperTransform::train; | |
| 533 | + | |
| 530 | 534 | void project(const TemplateList &src, TemplateList &dst) const |
| 531 | 535 | { |
| 532 | 536 | if (src.empty()) |
| ... | ... | @@ -544,7 +548,7 @@ class ProcessWrapperTransform : public WrapperTransform |
| 544 | 548 | processes.release(data); |
| 545 | 549 | } |
| 546 | 550 | |
| 547 | - void train(const TemplateList& data) | |
| 551 | + void train(const TemplateList &data) | |
| 548 | 552 | { |
| 549 | 553 | (void) data; |
| 550 | 554 | } | ... | ... |