Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 7596652

Browse files
authored
Merge pull request #14888 from briansull/fix-break
Fix build break
2 parents a731218 + ccceef1 commit 7596652

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jit/disasm.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
5858

5959
#ifdef _HOST_64BIT_
6060
template <typename T>
61-
struct SizeTKeyFuncs : LargePrimitiveKeyFuncs<T>
61+
struct SizeTKeyFuncs : JitLargePrimitiveKeyFuncs<T>
6262
{
6363
};
6464
#else // !_HOST_64BIT_
6565
template <typename T>
66-
struct SizeTKeyFuncs : SmallPrimitiveKeyFuncs<T>
66+
struct SizeTKeyFuncs : JitSmallPrimitiveKeyFuncs<T>
6767
{
6868
};
6969
#endif // _HOST_64BIT_

0 commit comments

Comments
 (0)