Skip to content

Commit f2b0f7f

Browse files
committed
Fix incorrect registration
1 parent 9326f44 commit f2b0f7f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

methods/CMangos/BigIntMethods.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ namespace LuaBigInt
135135

136136
ElunaRegister<ObjectGuid> ObjectGuidMethods[] =
137137
{
138-
{ "__tostring", &LuaBigInt::ToString<ObjectGuid> },
139-
{ "__eq", &LuaBigInt::Equal<ObjectGuid> },
138+
{ "__tostring", &LuaBigInt::ToString },
139+
{ "__eq", &LuaBigInt::Equal },
140140
};
141141
};
142142

methods/Mangos/BigIntMethods.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ namespace LuaBigInt
135135

136136
ElunaRegister<ObjectGuid> ObjectGuidMethods[] =
137137
{
138-
{ "__tostring", &LuaBigInt::ToString<ObjectGuid> },
139-
{ "__eq", &LuaBigInt::Equal<ObjectGuid> },
138+
{ "__tostring", &LuaBigInt::ToString },
139+
{ "__eq", &LuaBigInt::Equal },
140140
};
141141
};
142142

methods/VMangos/BigIntMethods.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ namespace LuaBigInt
135135

136136
ElunaRegister<ObjectGuid> ObjectGuidMethods[] =
137137
{
138-
{ "__tostring", &LuaBigInt::ToString<ObjectGuid> },
139-
{ "__eq", &LuaBigInt::Equal<ObjectGuid> },
138+
{ "__tostring", &LuaBigInt::ToString },
139+
{ "__eq", &LuaBigInt::Equal },
140140
};
141141
};
142142

0 commit comments

Comments
 (0)