aboutsummaryrefslogtreecommitdiff
path: root/src/check_decl.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-06-03 10:51:43 +0100
committergingerBill <bill@gingerbill.org>2018-06-03 10:51:43 +0100
commit398109ac841cb8c405b54da529837800ed8cddd1 (patch)
treecc19289df5a606674e61ee0d22385aa4174ff92c /src/check_decl.cpp
parent12b870ba6671854a3de8605f8dd8f36d1de90c6a (diff)
Remove need for __llvm_core
Diffstat (limited to 'src/check_decl.cpp')
-rw-r--r--src/check_decl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_decl.cpp b/src/check_decl.cpp
index 4e4355968..3a8f787c6 100644
--- a/src/check_decl.cpp
+++ b/src/check_decl.cpp
@@ -459,7 +459,7 @@ void init_entity_foreign_library(CheckerContext *ctx, Entity *e) {
Entity *found = scope_lookup_entity(ctx->scope, name);
if (found == nullptr) {
if (is_blank_ident(name)) {
- error(ident, "'_' cannot be used as a value type");
+ // NOTE(bill): link against nothing
} else {
error(ident, "Undeclared name: %.*s", LIT(name));
}