From ab739128d57871e0fbfd6e9db53413ca23d13b9b Mon Sep 17 00:00:00 2001 From: "HuYingzhuo(hugo/hyzboy)" Date: Mon, 24 Jul 2023 17:13:30 +0800 Subject: [PATCH] removed "hgl::" in CompOperator.h --- inc/hgl/CompOperator.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/inc/hgl/CompOperator.h b/inc/hgl/CompOperator.h index 690ebb5..2f7db42 100644 --- a/inc/hgl/CompOperator.h +++ b/inc/hgl/CompOperator.h @@ -55,15 +55,15 @@ namespace hgl void cpy(type *t,type *s){*t=*s;} \ }; - COMPARATOR_ORIGIN_TYPE(hgl::int8) - COMPARATOR_ORIGIN_TYPE(hgl::int16) - COMPARATOR_ORIGIN_TYPE(hgl::int32) - COMPARATOR_ORIGIN_TYPE(hgl::int64) + COMPARATOR_ORIGIN_TYPE(int8) + COMPARATOR_ORIGIN_TYPE(int16) + COMPARATOR_ORIGIN_TYPE(int32) + COMPARATOR_ORIGIN_TYPE(int64) - COMPARATOR_ORIGIN_TYPE(hgl::uint8) - COMPARATOR_ORIGIN_TYPE(hgl::uint16) - COMPARATOR_ORIGIN_TYPE(hgl::uint32) - COMPARATOR_ORIGIN_TYPE(hgl::uint64) + COMPARATOR_ORIGIN_TYPE(uint8) + COMPARATOR_ORIGIN_TYPE(uint16) + COMPARATOR_ORIGIN_TYPE(uint32) + COMPARATOR_ORIGIN_TYPE(uint64) COMPARATOR_ORIGIN_TYPE(float) COMPARATOR_ORIGIN_TYPE(double)