aboutsummaryrefslogtreecommitdiff
path: root/src/checker/entity.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/checker/entity.cpp')
-rw-r--r--src/checker/entity.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checker/entity.cpp b/src/checker/entity.cpp
index 44c32bece..4c0e86ab8 100644
--- a/src/checker/entity.cpp
+++ b/src/checker/entity.cpp
@@ -186,7 +186,7 @@ Entity *make_entity_implicit_value(gbAllocator a, String name, Type *type, Impli
Entity *make_entity_dummy_variable(gbAllocator a, Scope *file_scope, Token token) {
- token.string = make_string("_");
+ token.string = str_lit("_");
return make_entity_variable(a, file_scope, token, NULL);
}