Add missing header inclusions in `symbolreader.h`
authorAndrey Okoshkin <a.okoshkin@samsung.com>
Thu, 8 Feb 2018 12:30:18 +0000 (15:30 +0300)
committerAndrey Okoshkin <a.okoshkin@samsung.com>
Thu, 8 Feb 2018 13:18:41 +0000 (16:18 +0300)
Note that currently `TADDR` is not defined in `symbolreader.h` and
variables of this type are not used.

src/debug/netcoredbg/symbolreader.cpp
src/debug/netcoredbg/symbolreader.h

index 9d0d0f4380a21bd159ff435a404fe56afe423c20..dc8dcaed9c5e0b1b9c66561bdc61733ae730d58e 100644 (file)
@@ -4,15 +4,14 @@
 
 // Copyright (c) 2017 Samsung Electronics Co., LTD
 
-#include "common.h"
+#include "symbolreader.h"
 
-#include <string>
-#include <vector>
+#include <coreclrhost.h>
 
+#include "platform.h"
+#include "torelease.h"
 #include "cputil.h"
-#include "symbolreader.h"
 
-#include "platform.h"
 
 // Suppress undefined reference
 // `_invalid_parameter(char16_t const*, char16_t const*, char16_t const*, unsigned int, unsigned long)':
index 6150171f5bd867fb848fcda08acdba3525e2ff9b..bbdab9728cdb1039df4481e0eff6a68eec9e8d39 100644 (file)
@@ -3,6 +3,16 @@
 // See the LICENSE file in the project root for more information.
 
 // Copyright (c) 2017 Samsung Electronics Co., LTD
+#pragma once
+
+#include <string>
+#include <vector>
+
+#include <cor.h>
+#include <cordebug.h>
+
+/// FIXME: Definition of `TADDR`
+#include "torelease.h"
 
 static const char *SymbolReaderDllName = "SymbolReader";
 static const char *SymbolReaderClassName = "SOS.SymbolReader";