File tree Expand file tree Collapse file tree 4 files changed +7
-11
lines changed
Expand file tree Collapse file tree 4 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,7 @@ using namespace Microsoft::VisualStudio::Debugger::Telemetry;
99using namespace Microsoft ::VisualStudio::Debugger::DefaultPort;
1010using namespace std ::filesystem;
1111using namespace winrt ;
12- using namespace xlang ;
13- using namespace xlang ::meta;
14- using namespace xlang ::meta::reader;
12+ using namespace winmd ::reader;
1513
1614std::vector<std::string> db_files;
1715std::unique_ptr<cache> db;
Original file line number Diff line number Diff line change 55
66using namespace Microsoft ::VisualStudio::Debugger;
77using namespace Microsoft ::VisualStudio::Debugger::Evaluation;
8+ using namespace std ::literals;
89using namespace winrt ;
9- using namespace xlang ;
10- using namespace xlang ::meta;
11- using namespace xlang ::meta::reader;
10+ using namespace winmd ::impl;
11+ using namespace winmd ::reader;
1212
1313template <typename ...T> struct overloaded : T... { using T::operator ()...; };
1414template <typename ...T> overloaded (T...)->overloaded<T...>;
Original file line number Diff line number Diff line change 1717#include < memory>
1818#include < variant>
1919#include < cmd_reader.h>
20- #include < meta_reader .h>
20+ #include < winmd_reader .h>
2121
2222#ifndef IF_FAIL_RET
2323#define IF_FAIL_RET (expr ) { HRESULT _hr = (expr); if (FAILED (_hr)) { return (_hr); } }
@@ -31,7 +31,7 @@ winrt::com_ptr<T> make_com_ptr(T* ptr)
3131 return result;
3232}
3333
34- xlang::meta ::reader::TypeDef FindType (Microsoft::VisualStudio::Debugger::DkmProcess* process, std::string_view const & typeName);
34+ winmd ::reader::TypeDef FindType (Microsoft::VisualStudio::Debugger::DkmProcess* process, std::string_view const & typeName);
3535
3636enum class NatvisDiagnosticLevel
3737{
Original file line number Diff line number Diff line change 55using namespace Microsoft ::VisualStudio::Debugger;
66using namespace Microsoft ::VisualStudio::Debugger::Evaluation;
77
8- using namespace xlang ;
9- using namespace xlang ::meta;
10- using namespace xlang ::meta::reader;
8+ using namespace winmd ::reader;
119
1210HRESULT property_visualizer::GetChildren (
1311 _In_ UINT32 InitialRequestSize,
You can’t perform that action at this time.
0 commit comments