From 5735462e7083ffc7c265c454f2994bea583aeb22 Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Mon, 14 Jul 2014 13:44:05 -0400 Subject: [PATCH] Hopefully silence some warnings from clang --- openbr/plugins/process.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/openbr/plugins/process.cpp b/openbr/plugins/process.cpp index 4169c05..7044068 100644 --- a/openbr/plugins/process.cpp +++ b/openbr/plugins/process.cpp @@ -527,6 +527,10 @@ class ProcessWrapperTransform : public WrapperTransform return this; } + // make clang shut up? what a great compiler + using WrapperTransform::project; + using WrapperTransform::train; + void project(const TemplateList &src, TemplateList &dst) const { if (src.empty()) @@ -544,7 +548,7 @@ class ProcessWrapperTransform : public WrapperTransform processes.release(data); } - void train(const TemplateList& data) + void train(const TemplateList &data) { (void) data; } -- libgit2 0.21.4