mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
Fix for ambiguous variant error during build on Debian 10(Buster) using clang v7
This commit is contained in:
parent
fc00a83901
commit
b627fcd2cd
@ -425,7 +425,7 @@ Error OS_LinuxBSD::move_to_trash(const String &p_path) {
|
|||||||
// Generates the .trashinfo file
|
// Generates the .trashinfo file
|
||||||
OS::Date date = OS::get_singleton()->get_date(false);
|
OS::Date date = OS::get_singleton()->get_date(false);
|
||||||
OS::Time time = OS::get_singleton()->get_time(false);
|
OS::Time time = OS::get_singleton()->get_time(false);
|
||||||
String timestamp = vformat("%04d-%02d-%02dT%02d:%02d:", date.year, date.month, date.day, time.hour, time.minute);
|
String timestamp = vformat("%04d-%02d-%02dT%02d:%02d:", date.year, (int)date.month, date.day, time.hour, time.minute);
|
||||||
timestamp = vformat("%s%02d", timestamp, time.second); // vformat only supports up to 6 arguments.
|
timestamp = vformat("%s%02d", timestamp, time.second); // vformat only supports up to 6 arguments.
|
||||||
String trash_info = "[Trash Info]\nPath=" + p_path.uri_encode() + "\nDeletionDate=" + timestamp + "\n";
|
String trash_info = "[Trash Info]\nPath=" + p_path.uri_encode() + "\nDeletionDate=" + timestamp + "\n";
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user