diff options
Diffstat (limited to 'src/inserter.c')
-rw-r--r-- | src/inserter.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/inserter.c b/src/inserter.c index f3b8631b..13af697e 100644 --- a/src/inserter.c +++ b/src/inserter.c @@ -45,6 +45,13 @@ can_insert(SerdWorld* const world, const SerdNode* const node) } break; + case SERD_CURIE: + serd_logf(world, + SERD_LOG_LEVEL_ERROR, + "attempt to insert CURIE %s into model", + serd_node_string(node)); + return false; + case SERD_BLANK: case SERD_VARIABLE: break; |