Skip to content

Commit

Permalink
Fix clang-tidy remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
aobolensk committed Dec 15, 2024
1 parent d197a1c commit e7ab565
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/layers/InputLayer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ class InputLayer : public Layer {

public:
InputLayer() = default;
InputLayer(LayInOut layin, LayInOut layout, int mean = 0, int std = 1) {
InputLayer(LayInOut layin, LayInOut layout, int mean = 0, int std = 1)
: Layer() {
layin_ = layin;
layout_ = layout;
mean_ = mean;
Expand Down

0 comments on commit e7ab565

Please sign in to comment.