lib/expat: use C++ exceptions instead of class Error
This commit is contained in:
@@ -236,9 +236,9 @@ protected:
|
||||
}
|
||||
};
|
||||
|
||||
bool
|
||||
UPnPDirContent::parse(const char *input, Error &error)
|
||||
void
|
||||
UPnPDirContent::Parse(const char *input)
|
||||
{
|
||||
UPnPDirParser parser(*this);
|
||||
return parser.Parse(input, strlen(input), true, error);
|
||||
parser.Parse(input, strlen(input), true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user