Byaml : Fix saving ulong, long, and double types. Also fix converting ulong types
This commit is contained in:
parent
79b51dd7ed
commit
932a6f3a47
@ -254,7 +254,8 @@ namespace FirstPlugin
|
||||
string tag = null;
|
||||
if (node is int) tag = "!l";
|
||||
else if (node is uint) tag = "!u";
|
||||
else if (node is Int64) tag = "!ul";
|
||||
else if (node is Int64) tag = "!ll";
|
||||
else if (node is UInt64) tag = "!ul";
|
||||
else if (node is double) tag = "!d";
|
||||
else if (node is ByamlPathIndex) tag = "!p";
|
||||
|
||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user