Remove unnecessary header inclusions
authorAndrey Okoshkin <a.okoshkin@samsung.com>
Thu, 8 Feb 2018 15:10:43 +0000 (18:10 +0300)
committerAndrey Okoshkin <a.okoshkin@samsung.com>
Thu, 8 Feb 2018 15:10:43 +0000 (18:10 +0300)
src/debug/netcoredbg/breakpoints.cpp
src/debug/netcoredbg/expr.cpp
src/debug/netcoredbg/jmc.cpp
src/debug/netcoredbg/valuewalk.cpp
src/debug/netcoredbg/variables.cpp

index 321b92653a16d01548082820efe8cf1d41aab3fb..36e7e99f8e02537cf489f9af2b9b82bc15199e70 100644 (file)
@@ -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 <mutex>
-#include <memory>
 #include <unordered_set>
 #include <fstream>
 
-#include "manageddebugger.h"
-
 
 Breakpoints::ManagedBreakpoint::ManagedBreakpoint() :
     id(0), modAddress(0), methodToken(0), ilOffset(0), linenum(0), breakpoint(nullptr), enabled(true), times(0)
index 85700b0990e6b9b1d5c1584a2a0acede001c3d8c..18930e9c1c90d0d4f8bf774f8e0f572c4fe2c243 100644 (file)
@@ -2,21 +2,12 @@
 // Distributed under the MIT License.
 // See the LICENSE file in the project root for more information.
 
-#include "common.h"
-
-#include <sstream>
-#include <mutex>
-#include <condition_variable>
-#include <memory>
-#include <unordered_map>
-#include <unordered_set>
+#include "manageddebugger.h"
+
 #include <vector>
 #include <list>
-#include <iomanip>
 
 #include "cputil.h"
-
-#include "manageddebugger.h"
 #include "typeprinter.h"
 #include "valueprint.h"
 
index 31ea73639826e59eb21a30c33bd8d0a3823d7637..1e190242137678816b6f656b44d5dea7e1620d02 100644 (file)
@@ -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 <string>
 #include <vector>
 #include <list>
 #include <unordered_set>
 
-#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";
index 8dad61d49393c2b8374495b8a4e69b324afbadca..5d78281a44cac2276dd4176afed18e2cdf242725 100644 (file)
@@ -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 <sstream>
 #include <mutex>
-#include <condition_variable>
 #include <memory>
-#include <unordered_map>
 #include <unordered_set>
 #include <vector>
 #include <list>
-#include <iomanip>
-#include <utility>
 
 #include "cputil.h"
 #include "typeprinter.h"
 #include "valueprint.h"
-#include "manageddebugger.h"
 
 
 void Evaluator::NotifyEvalComplete(ICorDebugThread *pThread, ICorDebugEval *pEval)
index 7c12395bdaaf263dd1abc65e35d3c580f27c9ace..4f1eff81bc5878c59dd3a29013a81dd565d500c6 100644 (file)
@@ -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 <sstream>
-#include <mutex>
-#include <condition_variable>
-#include <memory>
-#include <unordered_map>
 #include <unordered_set>
 #include <vector>
-#include <list>
-#include <iomanip>
 
-#include "manageddebugger.h"
 #include "typeprinter.h"
 #include "valueprint.h"
 #include "frames.h"