File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ extern "C"
6363 void value_assign_cstring (ValueData *v, const char *stringValue)
6464 {
6565 if (v->type != ValueType::String) {
66- v->stringValue = string_pool_new ();
66+ v->stringValue = string_pool_new (false );
6767 v->type = ValueType::String;
6868 }
6969
@@ -74,7 +74,7 @@ extern "C"
7474 void value_assign_stringPtr (ValueData *v, const StringPtr *stringValue)
7575 {
7676 if (v->type != ValueType::String) {
77- v->stringValue = string_pool_new ();
77+ v->stringValue = string_pool_new (false );
7878 v->type = ValueType::String;
7979 }
8080
@@ -103,7 +103,7 @@ extern "C"
103103 if (v->type == ValueType::String)
104104 string_assign (v->stringValue , another->stringValue );
105105 else {
106- v->stringValue = string_pool_new ();
106+ v->stringValue = string_pool_new (false );
107107 string_assign (v->stringValue , another->stringValue );
108108 v->type = ValueType::String;
109109 }
You can’t perform that action at this time.
0 commit comments