ASSERT関数を実装,関数定義の後のコードが実行されない問題を修正
This commit is contained in:
@@ -90,6 +90,10 @@ struct Value
|
||||
{
|
||||
return this.type == ValueType.Integer ? this.integerValue : (this.type == ValueType.Double ? this.doubleValue : 0);
|
||||
}
|
||||
wstring castString()
|
||||
{
|
||||
return this.type == ValueType.String ? this.stringValue : "";
|
||||
}
|
||||
string toString()
|
||||
{
|
||||
import std.conv;
|
||||
|
||||
Reference in New Issue
Block a user