From 31355ab95aa62bbb7d28119f4f0665e1b553a721 Mon Sep 17 00:00:00 2001 From: idealvin Date: Sat, 21 Oct 2023 17:26:23 +0800 Subject: [PATCH] cleanup --- include/co/def.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/co/def.h b/include/co/def.h index 16c2e55a3..9dd34bf99 100644 --- a/include/co/def.h +++ b/include/co/def.h @@ -25,11 +25,6 @@ typedef uint64_t uint64; #define MIN_INT32 ((int32) ~MAX_INT32) #define MIN_INT64 ((int64) ~MAX_INT64) -struct __none { - constexpr __none() = default; - ~__none() = default; -}; - #define DISALLOW_COPY_AND_ASSIGN(T) \ T(const T&) = delete; \ void operator=(const T&) = delete