mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
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
@ -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<>();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user