Browse Source

Disable a warning.

pull/1/head
Zoltan Varga 15 years ago committed by Andreia Gaita
parent
commit
cc3f705770
  1. 2
      src/Mono.VisualC.Interop/CppModifiers.cs

2
src/Mono.VisualC.Interop/CppModifiers.cs

@ -17,7 +17,9 @@ using Mono.VisualC.Interop.Util; @@ -17,7 +17,9 @@ using Mono.VisualC.Interop.Util;
namespace Mono.VisualC.Interop {
public abstract class CppModifiers {
#pragma warning disable 0414
static int tmp;
#pragma warning restore
// This can be added to at runtime to support other modifiers
// The list should be prioritized, in that the first items should be modifiers that can potentially contain other modifiers
public static readonly Dictionary<string,Action<Match,List<CppModifiers>>> Tokenize = new Dictionary<string,Action<Match,List<CppModifiers>>> () {

Loading…
Cancel
Save