summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT/Platform.cs
diff options
context:
space:
mode:
authorJason Smith <jason.smith@xamarin.com>2016-04-11 17:33:34 -0700
committerJason Smith <jason.smith@xamarin.com>2016-04-11 17:33:34 -0700
commitdf2427091536ed8065e50f7bffebbc5707971803 (patch)
treef9d9fd7be6d4ddc932dd65427298a53ce9a75e38 /Xamarin.Forms.Platform.WinRT/Platform.cs
parent16e88315e1ed643a2bde053930feb2bae149d34e (diff)
downloadxamarin-forms-df2427091536ed8065e50f7bffebbc5707971803.tar.gz
xamarin-forms-df2427091536ed8065e50f7bffebbc5707971803.tar.bz2
xamarin-forms-df2427091536ed8065e50f7bffebbc5707971803.zip
Resharper warnings are slightly different for some reason than WError, resolve these (#66)
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT/Platform.cs')
-rw-r--r--Xamarin.Forms.Platform.WinRT/Platform.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/Platform.cs b/Xamarin.Forms.Platform.WinRT/Platform.cs
index df16ddc9..dbef5f7d 100644
--- a/Xamarin.Forms.Platform.WinRT/Platform.cs
+++ b/Xamarin.Forms.Platform.WinRT/Platform.cs
@@ -342,7 +342,9 @@ namespace Xamarin.Forms.Platform.WinRT
readonly ToolbarTracker _toolbarTracker = new ToolbarTracker();
readonly FileImageSourcePathConverter _fileImageSourcePathConverter = new FileImageSourcePathConverter();
- IToolbarProvider _toolbarProvider;
+#pragma warning disable 649
+ IToolbarProvider _toolbarProvider;
+#pragma warning restore 649
class ToolbarProvider : IToolbarProvider
{