Skip to content

Added a pragma statement to disable a pointless warning. #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Added a pragma statement to disable a pointless warning.
  • Loading branch information
mteper committed Dec 15, 2014
commit c60cf34d5104d548a02fe30bdc569db346963933
2 changes: 2 additions & 0 deletions src/SQLite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
/// </summary>
#pragma warning disable 649 // value assigned but never used
static bool _preserveDuringLinkMagic;
#pragma warning restore 649

/// <summary>
/// Sets a busy handler to sleep the specified amount of time when a table is locked.
Expand Down