From 1df0e88ae8905fef7a9ce73d7e6e53dfaa7a1eee Mon Sep 17 00:00:00 2001 From: lamonte Date: Sun, 25 Aug 2019 06:48:37 -0500 Subject: default is only supported by 7.1, reverted to support 7.0 out of the box (no conflict) --- modules/mono/editor/GodotTools/GodotTools/Utils/NotifyAwaiter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3