aboutsummaryrefslogtreecommitdiff
path: root/src/common/windows/pdb_source_line_writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/windows/pdb_source_line_writer.h')
-rw-r--r--src/common/windows/pdb_source_line_writer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/windows/pdb_source_line_writer.h b/src/common/windows/pdb_source_line_writer.h
index ef2a27db..be6121c3 100644
--- a/src/common/windows/pdb_source_line_writer.h
+++ b/src/common/windows/pdb_source_line_writer.h
@@ -38,6 +38,8 @@
#include <hash_map>
#include <string>
+#include "common/windows/omap.h"
+
struct IDiaEnumLineNumbers;
struct IDiaSession;
struct IDiaSymbol;
@@ -228,6 +230,9 @@ class PDBSourceLineWriter {
// This maps unique filenames to file IDs.
hash_map<wstring, DWORD> unique_files_;
+ // This is used for calculating post-transform symbol addresses and lengths.
+ ImageMap image_map_;
+
// Disallow copy ctor and operator=
PDBSourceLineWriter(const PDBSourceLineWriter&);
void operator=(const PDBSourceLineWriter&);