From: Andrey Okoshkin Date: Thu, 8 Feb 2018 15:10:43 +0000 (+0300) Subject: Remove unnecessary header inclusions X-Git-Tag: submit/tizen/20180620.071641~18^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85b1ebdd1bb9c416c1f56a3e64c19ed3389a57ae;p=sdk%2Ftools%2Fnetcoredbg.git Remove unnecessary header inclusions --- diff --git a/src/debug/netcoredbg/breakpoints.cpp b/src/debug/netcoredbg/breakpoints.cpp index 321b926..36e7e99 100644 --- a/src/debug/netcoredbg/breakpoints.cpp +++ b/src/debug/netcoredbg/breakpoints.cpp @@ -2,15 +2,12 @@ // 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 "manageddebugger.h" - Breakpoints::ManagedBreakpoint::ManagedBreakpoint() : id(0), modAddress(0), methodToken(0), ilOffset(0), linenum(0), breakpoint(nullptr), enabled(true), times(0) diff --git a/src/debug/netcoredbg/expr.cpp b/src/debug/netcoredbg/expr.cpp index 85700b0..18930e9 100644 --- a/src/debug/netcoredbg/expr.cpp +++ b/src/debug/netcoredbg/expr.cpp @@ -2,21 +2,12 @@ // Distributed under the MIT License. // See the LICENSE file in the project root for more information. -#include "common.h" - -#include -#include -#include -#include -#include -#include +#include "manageddebugger.h" + #include #include -#include #include "cputil.h" - -#include "manageddebugger.h" #include "typeprinter.h" #include "valueprint.h" diff --git a/src/debug/netcoredbg/jmc.cpp b/src/debug/netcoredbg/jmc.cpp index 31ea736..1e19024 100644 --- a/src/debug/netcoredbg/jmc.cpp +++ b/src/debug/netcoredbg/jmc.cpp @@ -2,18 +2,18 @@ // Distributed under the MIT License. // See the LICENSE file in the project root for more information. -#include "common.h" +#include "modules.h" #include #include #include #include -#include "cputil.h" #include "typeprinter.h" #include "platform.h" #include "symbolreader.h" -#include "modules.h" +#include "cputil.h" + static const char *g_nonUserCode = "System.Diagnostics.DebuggerNonUserCodeAttribute..ctor"; static const char *g_stepThrough = "System.Diagnostics.DebuggerStepThroughAttribute..ctor"; diff --git a/src/debug/netcoredbg/valuewalk.cpp b/src/debug/netcoredbg/valuewalk.cpp index 8dad61d..5d78281 100644 --- a/src/debug/netcoredbg/valuewalk.cpp +++ b/src/debug/netcoredbg/valuewalk.cpp @@ -2,23 +2,18 @@ // 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 -#include #include "cputil.h" #include "typeprinter.h" #include "valueprint.h" -#include "manageddebugger.h" void Evaluator::NotifyEvalComplete(ICorDebugThread *pThread, ICorDebugEval *pEval) diff --git a/src/debug/netcoredbg/variables.cpp b/src/debug/netcoredbg/variables.cpp index 7c12395..4f1eff8 100644 --- a/src/debug/netcoredbg/variables.cpp +++ b/src/debug/netcoredbg/variables.cpp @@ -2,19 +2,11 @@ // 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 -#include "manageddebugger.h" #include "typeprinter.h" #include "valueprint.h" #include "frames.h"