Skip to content

Commit 82d9d10

Browse files
author
AndreySorokin7
committed
fix clang
1 parent eacff7b commit 82d9d10

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

include/layers/ConvLayer.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ class ConvolutionalLayer : public Layer {
3030
implType_ = implType;
3131
}
3232

33-
void run(const std::vector<Tensor>& input, std::vector<Tensor>& output) override;
33+
void run(const std::vector<Tensor>& input,
34+
std::vector<Tensor>& output) override;
3435
#ifdef ENABLE_STATISTIC_WEIGHTS
3536
Tensor get_weights() override { return kernel_; }
3637
#endif

0 commit comments

Comments
 (0)