Skip to content

Commit ca3eec5

Browse files
committed
Change MAX_LITERAL to MSVC's max literal size
1 parent 522c0b0 commit ca3eec5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ env.author_builder = author_builder
282282

283283

284284
def to_raw_cstring(value: Union[str, List[str]]) -> str:
285-
MAX_LITERAL = 35 * 1024
285+
MAX_LITERAL = 16380
286286

287287
if isinstance(value, list):
288288
value = "\n".join(value) + "\n"

0 commit comments

Comments
 (0)