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

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2015-02-18 15:15:03 +0300
committerMarek Safar <marek.safar@gmail.com>2015-02-18 15:15:03 +0300
commitd589df6e8a206e28b84304a75917006a0e076c29 (patch)
treee36d67d2481c7d3014b5852a103bb4d7718dd176
parentcd4bed9dd6540c380177c5b9c72f4d020f1b138f (diff)
Fixes warning in NO_SYMBOL_WRITER mode
-rw-r--r--reflect/Emit/ILGenerator.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/reflect/Emit/ILGenerator.cs b/reflect/Emit/ILGenerator.cs
index 18db09be..885e6497 100644
--- a/reflect/Emit/ILGenerator.cs
+++ b/reflect/Emit/ILGenerator.cs
@@ -112,7 +112,9 @@ namespace IKVM.Reflection.Emit
private readonly List<int> labels = new List<int>();
private readonly List<int> labelStackHeight = new List<int>();
private readonly List<LabelFixup> labelFixups = new List<LabelFixup>();
+#if !NO_SYMBOL_WRITER
private readonly List<SequencePoint> sequencePoints = new List<SequencePoint>();
+#endif
private readonly List<ExceptionBlock> exceptions = new List<ExceptionBlock>();
private readonly Stack<ExceptionBlock> exceptionStack = new Stack<ExceptionBlock>();
private ushort maxStack;