Bug 1900164 - Add missing empty template argument list in function call. r=masayuki

clang 19 will start complaining about it. See
https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#96

Differential Revision: https://phabricator.services.mozilla.com/D212496
This commit is contained in:
Mike Hommey 2024-06-04 01:19:41 +00:00
parent 48545554f3
commit cc3cc60ea9

View File

@ -293,7 +293,7 @@ class MOZ_STACK_CLASS WSScanResult final {
template <typename EditorDOMPointType>
EditorDOMPointType PointAfterReachedContent() const {
MOZ_ASSERT(mContent);
return PointAtReachedContent<EditorDOMPointType>().template NextPoint();
return PointAtReachedContent<EditorDOMPointType>().template NextPoint<>();
}
/**