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-07-30 18:25:12 +0300
committerJb Evain <jb@evain.net>2016-07-13 23:45:31 +0300
commit7cde491752861a331e091dca601748e9f0741e95 (patch)
tree71c9191cad1d70adab40ec78fa22c852b98f8412 /Mono.Cecil.PE/TextMap.cs
parent7efc4a6de7fba02965daaf407fe557ffee725b79 (diff)
Add support for the portable pdb format
Diffstat (limited to 'Mono.Cecil.PE/TextMap.cs')
-rw-r--r--Mono.Cecil.PE/TextMap.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Mono.Cecil.PE/TextMap.cs b/Mono.Cecil.PE/TextMap.cs
index 9557543..614691b 100644
--- a/Mono.Cecil.PE/TextMap.cs
+++ b/Mono.Cecil.PE/TextMap.cs
@@ -31,6 +31,7 @@ namespace Mono.Cecil.PE {
UserStringHeap,
GuidHeap,
BlobHeap,
+ PdbHeap,
// End Metadata
DebugDirectory,
@@ -41,7 +42,7 @@ namespace Mono.Cecil.PE {
sealed class TextMap {
- readonly Range [] map = new Range [16 /*Enum.GetValues (typeof (TextSegment)).Length*/];
+ readonly Range [] map = new Range [17 /*Enum.GetValues (typeof (TextSegment)).Length*/];
public void AddMap (TextSegment segment, int length)
{