default is only supported by 7.1, reverted to support 7.0 out of the box (no conflict)

This commit is contained in:
lamonte 2019-08-25 06:48:37 -05:00
parent 660682a2a3
commit 1df0e88ae8

View file

@ -51,7 +51,7 @@ namespace GodotTools.Utils
{
continuation = null;
exception = null;
result = default;
result = default(T);
IsCompleted = false;
return this;
}