Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEgorBo <egorbo@gmail.com>2018-03-07 12:33:23 +0300
committerMarek Safar <marek.safar@gmail.com>2018-03-07 12:47:42 +0300
commit5fb83055466250bf860ef066029a21532d7f1915 (patch)
treeb98e10370c13e7e080191dcdf984589d15d446d6
parent61a8cb699635edabaac72b93e087d32714c1bf70 (diff)
add 'using System.Diagnostics.Private' to TaskAwaiter
-rw-r--r--src/System.Private.CoreLib/src/System/Runtime/CompilerServices/TaskAwaiter.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/TaskAwaiter.cs b/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/TaskAwaiter.cs
index 33b5b0b26..12bd0de71 100644
--- a/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/TaskAwaiter.cs
+++ b/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/TaskAwaiter.cs
@@ -39,6 +39,7 @@
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
using System.Diagnostics;
+using System.Diagnostics.Private;
using System.Threading;
using System.Threading.Tasks;