forked from mirrors/gecko-dev
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:
parent
48545554f3
commit
cc3cc60ea9
1 changed files with 1 additions and 1 deletions
|
|
@ -293,7 +293,7 @@ class MOZ_STACK_CLASS WSScanResult final {
|
||||||
template <typename EditorDOMPointType>
|
template <typename EditorDOMPointType>
|
||||||
EditorDOMPointType PointAfterReachedContent() const {
|
EditorDOMPointType PointAfterReachedContent() const {
|
||||||
MOZ_ASSERT(mContent);
|
MOZ_ASSERT(mContent);
|
||||||
return PointAtReachedContent<EditorDOMPointType>().template NextPoint();
|
return PointAtReachedContent<EditorDOMPointType>().template NextPoint<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue