From: Andrey Okoshkin Date: Thu, 8 Feb 2018 12:21:32 +0000 (+0300) Subject: Fixed header inclusions in `manageddebugger.h` X-Git-Tag: submit/tizen/20180620.071641~18^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=74adcf9192efd1f976fe28d39df8a3e6310b94e8;p=sdk%2Ftools%2Fnetcoredbg.git Fixed header inclusions in `manageddebugger.h` --- diff --git a/src/debug/netcoredbg/manageddebugger.cpp b/src/debug/netcoredbg/manageddebugger.cpp index 59ba95b..595b465 100644 --- a/src/debug/netcoredbg/manageddebugger.cpp +++ b/src/debug/netcoredbg/manageddebugger.cpp @@ -2,29 +2,26 @@ // Distributed under the MIT License. // See the LICENSE file in the project root for more information. -#include "common.h" +#include "manageddebugger.h" #include #include -#include #include -#include -#include -#include #include #include "symbolreader.h" #include "cputil.h" #include "platform.h" #include "typeprinter.h" -#include "manageddebugger.h" #include "frames.h" +#ifndef __in #define __in +#endif +#ifndef __out #define __out +#endif #include "dbgshim.h" -#undef __in -#undef __out void ManagedDebugger::NotifyProcessCreated() diff --git a/src/debug/netcoredbg/manageddebugger.h b/src/debug/netcoredbg/manageddebugger.h index 39af330..c91ab2f 100644 --- a/src/debug/netcoredbg/manageddebugger.h +++ b/src/debug/netcoredbg/manageddebugger.h @@ -1,6 +1,7 @@ // Copyright (c) 2018 Samsung Electronics Co., LTD // Distributed under the MIT License. // See the LICENSE file in the project root for more information. +#pragma once #include #include @@ -9,6 +10,7 @@ #include #include "debugger.h" +#include "protocol.h" #include "modules.h"