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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2015-06-18 12:12:16 +0300
committerJb Evain <jbevain@gmail.com>2015-06-18 12:12:16 +0300
commit3654d4b9db4301dcaa07ca56c6acddd3799154e0 (patch)
tree979bd6a19d889013a8eee6d2ad3e61195d86957d
parent617c4b00c4eefcc8eb00172917865cd055750225 (diff)
Fix order of arguments
-rw-r--r--symbols/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/symbols/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs b/symbols/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs
index cf5d819..0e37c31 100644
--- a/symbols/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs
+++ b/symbols/mdb/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs
@@ -205,7 +205,7 @@ namespace Mono.CompilerServices.SymbolWriter
public static readonly LineNumberEntry Null = new LineNumberEntry (0, 0, 0, 0);
public LineNumberEntry (int file, int row, int column, int offset)
- : this (file, row, offset, column, false)
+ : this (file, row, column, offset, false)
{
}