Actions
Bug #3597
closed

XdmValue::getUnderlyingValue does not return a value
Start date:
2018-01-04
Due date:
% Done:
100%
Estimated time:
0:06 h
Found in version:
1.1.0
Fixed in version:
1.1.2
Platforms:
Description
At XdmNode.h:74 the inline function definition of
jobject getUnderlyingValue(SaxonProcessor * proc) {
XdmItem::getUnderlyingValue(proc);
}
is missing the return statement; it should read:
jobject getUnderlyingValue(SaxonProcessor * proc) {
return XdmItem::getUnderlyingValue(proc);
}
Please register to edit this issue
Actions