summaryrefslogtreecommitdiff
path: root/modules/mono/editor
diff options
context:
space:
mode:
authorlamonte <lamonteh2@gmail.com>2019-08-25 06:48:37 -0500
committerlamonte <lamonteh2@gmail.com>2019-08-25 06:48:37 -0500
commit1df0e88ae8905fef7a9ce73d7e6e53dfaa7a1eee (patch)
tree684f27225083e4603ba80b64e2b6d9216446f8f1 /modules/mono/editor
parent660682a2a38815675ac338bcd9232789fe815958 (diff)
default is only supported by 7.1, reverted to support 7.0 out of the box (no conflict)
Diffstat (limited to 'modules/mono/editor')
-rw-r--r--modules/mono/editor/GodotTools/GodotTools/Utils/NotifyAwaiter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/Utils/NotifyAwaiter.cs b/modules/mono/editor/GodotTools/GodotTools/Utils/NotifyAwaiter.cs
index a3490fa89f..700b786752 100644
--- a/modules/mono/editor/GodotTools/GodotTools/Utils/NotifyAwaiter.cs
+++ b/modules/mono/editor/GodotTools/GodotTools/Utils/NotifyAwaiter.cs
@@ -51,7 +51,7 @@ namespace GodotTools.Utils
{
continuation = null;
exception = null;
- result = default;
+ result = default(T);
IsCompleted = false;
return this;
}