Skip to content

Commit a468a07

Browse files
committed
Fix missing instantiated template for PidHashNameLen which breaks on linux and MacOSX build
1 parent de4659a commit a468a07

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/Parser/Hash.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,9 @@ IdentPtr HashTbl::PidHashNameLen(CharType const * prgch, CharType const * end, u
225225
uint32 luHash = CaseSensitiveComputeHashCch(prgch, end, cch);
226226
return PidHashNameLenWithHash(prgch, end, cch, luHash);
227227
}
228+
template IdentPtr HashTbl::PidHashNameLen<utf8char_t>(utf8char_t const * prgch, utf8char_t const * end, uint32 cch);
229+
template IdentPtr HashTbl::PidHashNameLen<char>(char const * prgch, char const * end, uint32 cch);
230+
template IdentPtr HashTbl::PidHashNameLen<char16>(char16 const * prgch, char16 const * end, uint32 cch);
228231

229232
template <typename CharType>
230233
IdentPtr HashTbl::PidHashNameLen(CharType const * prgch, uint32 cch)

0 commit comments

Comments
 (0)