mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Merge pull request #70237 from quentinguidee/refactor/fix-comma-instead-of-semicolon
Fix use of comma instead of semicolon
This commit is contained in:
@@ -59,7 +59,7 @@ public:
|
||||
type = p_type;
|
||||
}
|
||||
Address(AddressMode p_mode, uint32_t p_address, const GDScriptDataType &p_type = GDScriptDataType()) {
|
||||
mode = p_mode,
|
||||
mode = p_mode;
|
||||
address = p_address;
|
||||
type = p_type;
|
||||
}
|
||||
|
||||
@@ -702,7 +702,7 @@ struct DiagnosticRelatedInformation {
|
||||
|
||||
Dictionary to_json() const {
|
||||
Dictionary dict;
|
||||
dict["location"] = location.to_json(),
|
||||
dict["location"] = location.to_json();
|
||||
dict["message"] = message;
|
||||
return dict;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user