From d8a3e4e804c90845fcfd1b60e577780256de3354 Mon Sep 17 00:00:00 2001 From: Leran Wang <2428592483@qq.com> Date: Tue, 5 Sep 2023 21:37:28 +0800 Subject: [PATCH] Add include guard --- src/layer/linearint8.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/layer/linearint8.h b/src/layer/linearint8.h index a4287307d87c..981177d1c8b8 100644 --- a/src/layer/linearint8.h +++ b/src/layer/linearint8.h @@ -12,6 +12,9 @@ // CONDITIONS OF ANY KIND, either express or implied. See the License for the // specific language governing permissions and limitations under the License. +#ifndef LAYER_LINEARINT8_H +#define LAYER_LINEARINT8_H + #include "layer.h" namespace ncnn { @@ -35,3 +38,5 @@ class LinearInt8 : public Layer }; } // namespace ncnn + +#endif // LAYER_LINEARINT8_H