From d66f2e518880438d5624bd6c88b2db180bf2dc63 Mon Sep 17 00:00:00 2001 From: Tommy Chiang Date: Thu, 5 Oct 2023 16:15:15 +0800 Subject: [PATCH] Add all macro to debug.cpp --- codes/Basic/debug.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/codes/Basic/debug.cpp b/codes/Basic/debug.cpp index 54eea7ff..d93866ce 100644 --- a/codes/Basic/debug.cpp +++ b/codes/Basic/debug.cpp @@ -1,3 +1,4 @@ +#define all(x) begin(x), end(x) #ifdef CKISEKI #define safe cerr<<__PRETTY_FUNCTION__<<" line "<<__LINE__<<" safe\n" #define debug(a...) debug_(#a, a)