From ca3eec51c520387df00a974343144644d8bff89f Mon Sep 17 00:00:00 2001 From: Spartan322 Date: Wed, 20 Aug 2025 12:25:31 -0400 Subject: [PATCH] Change MAX_LITERAL to MSVC's max literal size --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 1b08f4c..78ac56b 100644 --- a/SConstruct +++ b/SConstruct @@ -282,7 +282,7 @@ env.author_builder = author_builder def to_raw_cstring(value: Union[str, List[str]]) -> str: - MAX_LITERAL = 35 * 1024 + MAX_LITERAL = 16380 if isinstance(value, list): value = "\n".join(value) + "\n"