From: Andrey Okoshkin Date: Thu, 8 Feb 2018 12:30:18 +0000 (+0300) Subject: Add missing header inclusions in `symbolreader.h` X-Git-Tag: submit/tizen/20180620.071641~18^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a949158a3827e762fa5f3b27ebad4208de7e09b;p=sdk%2Ftools%2Fnetcoredbg.git Add missing header inclusions in `symbolreader.h` Note that currently `TADDR` is not defined in `symbolreader.h` and variables of this type are not used. --- diff --git a/src/debug/netcoredbg/symbolreader.cpp b/src/debug/netcoredbg/symbolreader.cpp index 9d0d0f4..dc8dcae 100644 --- a/src/debug/netcoredbg/symbolreader.cpp +++ b/src/debug/netcoredbg/symbolreader.cpp @@ -4,15 +4,14 @@ // Copyright (c) 2017 Samsung Electronics Co., LTD -#include "common.h" +#include "symbolreader.h" -#include -#include +#include +#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)': diff --git a/src/debug/netcoredbg/symbolreader.h b/src/debug/netcoredbg/symbolreader.h index 6150171..bbdab97 100644 --- a/src/debug/netcoredbg/symbolreader.h +++ b/src/debug/netcoredbg/symbolreader.h @@ -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 +#include + +#include +#include + +/// FIXME: Definition of `TADDR` +#include "torelease.h" static const char *SymbolReaderDllName = "SymbolReader"; static const char *SymbolReaderClassName = "SOS.SymbolReader";