Skip to content

Commit 4862353

Browse files
Merge pull request #145 from OpenTriply/fix-segfault-nquads
Instantiate Serd parser for NQUAD
2 parents de95255 + c7c3d4c commit 4862353

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libhdt/src/rdf/RDFParser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace hdt {
1414

1515
RDFParserCallback *RDFParserCallback::getParserCallback(RDFNotation notation) {
1616
#ifdef HAVE_SERD
17-
if(notation==TURTLE || notation==NTRIPLES) {
17+
if(notation==TURTLE || notation==NTRIPLES || notation==NQUAD) {
1818
return new RDFParserSerd();
1919
}
2020
#else

0 commit comments

Comments
 (0)