From 2291bddfdb329651321158ab99a8d1db406bee64 Mon Sep 17 00:00:00 2001 From: taynpg Date: Fri, 8 Mar 2024 17:12:19 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E7=BC=BA=E5=A4=B1=E7=9A=84?= =?UTF-8?q?=E5=A4=B4=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- cryp/box_rsa.h | 2 ++ test/cryp_test/main.cpp | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c795b05..d835f77 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -build \ No newline at end of file +build +.cache \ No newline at end of file diff --git a/cryp/box_rsa.h b/cryp/box_rsa.h index 4d210c8..365c455 100644 --- a/cryp/box_rsa.h +++ b/cryp/box_rsa.h @@ -1,6 +1,8 @@ #ifndef BOX_CRTP_RSA_H #define BOX_CRTP_RSA_H +#include + namespace cppbox { struct HData { diff --git a/test/cryp_test/main.cpp b/test/cryp_test/main.cpp index be02d0c..dbcd904 100644 --- a/test/cryp_test/main.cpp +++ b/test/cryp_test/main.cpp @@ -1,6 +1,7 @@ #include #include #include +#include using namespace cppbox;