Skip to content

Commit 4387cea

Browse files
committed
Mark new strings as internal by default
1 parent 9c61d35 commit 4387cea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/scratchcpp/string_pool.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ struct StringPtr;
1111

1212
extern "C"
1313
{
14-
LIBSCRATCHCPP_EXPORT StringPtr *string_pool_new(bool internal = false);
14+
LIBSCRATCHCPP_EXPORT StringPtr *string_pool_new(bool internal = true);
1515
LIBSCRATCHCPP_EXPORT void string_pool_free(StringPtr *str);
1616
}
1717

0 commit comments

Comments
 (0)