Skip to content

Commit 73a7fc0

Browse files
committed
DynValue implements IEquatable<DynValue>
1 parent e41cfe6 commit 73a7fc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WattleScript.Interpreter/DataTypes/DynValue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace WattleScript.Interpreter
1414
/// A class representing a value in a Lua/WattleScript script.
1515
/// </summary>
1616
[StructLayout(LayoutKind.Explicit)]
17-
public struct DynValue
17+
public struct DynValue : IEquatable<DynValue>
1818
{
1919
private static readonly object m_NumberTag = new object();
2020
[FieldOffset(0)]

0 commit comments

Comments
 (0)