From c60cf34d5104d548a02fe30bdc569db346963933 Mon Sep 17 00:00:00 2001 From: Michael Teper Date: Mon, 15 Dec 2014 09:51:43 -0800 Subject: [PATCH] Added a pragma statement to disable a pointless warning. --- src/SQLite.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/SQLite.cs b/src/SQLite.cs index bc38684a..7090bca8 100644 --- a/src/SQLite.cs +++ b/src/SQLite.cs @@ -202,7 +202,9 @@ static byte[] GetNullTerminatedUtf8 (string s) /// Used to list some code that we want the MonoTouch linker /// to see, but that we never want to actually execute. /// + #pragma warning disable 649 // value assigned but never used static bool _preserveDuringLinkMagic; + #pragma warning restore 649 /// /// Sets a busy handler to sleep the specified amount of time when a table is locked.