Skip to content

Commit eade653

Browse files
committed
fix tidy
1 parent df85f60 commit eade653

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/layers/BinaryOpLayer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class BinaryOpLayer : public Layer {
2020
static std::string get_name() { return "Binary Operation Layer"; }
2121
void run(const Tensor& input, Tensor& output) override;
2222
void run(const Tensor& A, const Tensor& B, Tensor& output);
23-
bool is_scalar_tensor(const Tensor& t);
23+
static bool is_scalar_tensor(const Tensor& t);
2424

2525
#ifdef ENABLE_STATISTIC_WEIGHTS
2626
Tensor get_weights() override {

0 commit comments

Comments
 (0)