diff --git a/include/pocketpy/common.h b/include/pocketpy/common.h index 33c4dac0..e7ca0603 100644 --- a/include/pocketpy/common.h +++ b/include/pocketpy/common.h @@ -2,6 +2,7 @@ #include #include +#include #include #include diff --git a/include/pocketpy/str.h b/include/pocketpy/str.h index 7debedba..d45518cd 100644 --- a/include/pocketpy/str.h +++ b/include/pocketpy/str.h @@ -153,6 +153,10 @@ struct SStream{ void write_hex(i64); }; +#ifdef _S +#undef _S +#endif + template Str _S(Args&&... args) { SStream ss;