From 77adf212a4342665625788b64d1f54f89a1cca27 Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Wed, 25 May 2022 14:27:44 +0800 Subject: [PATCH] chore: rename "templates" to "utils" --- .gitignore | 4 ++-- S2OJ/1224/1224.cpp | 2 +- templates/BigInt.h => utils/bigint.h | 0 {templates => utils}/int128.h | 0 {templates => utils}/size.h | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename templates/BigInt.h => utils/bigint.h (100%) rename {templates => utils}/int128.h (100%) rename {templates => utils}/size.h (100%) diff --git a/.gitignore b/.gitignore index 6daba6c5..992417c1 100644 --- a/.gitignore +++ b/.gitignore @@ -42,8 +42,8 @@ temp/** **/tempCodeRunnerFile.* temp* -# Templates -!/templates/ +# Utils +!/utils/ # Compile Temps *.ii diff --git a/S2OJ/1224/1224.cpp b/S2OJ/1224/1224.cpp index 3dd81dd0..5b7b796a 100644 --- a/S2OJ/1224/1224.cpp +++ b/S2OJ/1224/1224.cpp @@ -4,7 +4,7 @@ #include #include -/* imported from ../../templates/BigInt.h */ +/* imported from ../../utils/BigInt.h */ #include #include #include diff --git a/templates/BigInt.h b/utils/bigint.h similarity index 100% rename from templates/BigInt.h rename to utils/bigint.h diff --git a/templates/int128.h b/utils/int128.h similarity index 100% rename from templates/int128.h rename to utils/int128.h diff --git a/templates/size.h b/utils/size.h similarity index 100% rename from templates/size.h rename to utils/size.h