Project

Profile

Help

Bug #3597

closed

XdmValue::getUnderlyingValue does not return a value

Added by Stefan Karner over 6 years ago. Updated about 5 years ago.

Status:
Closed
Priority:
Normal
Category:
C++ API
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

Also available in: Atom PDF