зеркало из https://github.com/microsoft/cppwinrt.git
Fix cppwinrtvisualizer compilation
This commit is contained in:
Родитель
772622e65b
Коммит
b92febd87b
|
@ -9,9 +9,7 @@ using namespace Microsoft::VisualStudio::Debugger::Telemetry;
|
|||
using namespace Microsoft::VisualStudio::Debugger::DefaultPort;
|
||||
using namespace std::filesystem;
|
||||
using namespace winrt;
|
||||
using namespace xlang;
|
||||
using namespace xlang::meta;
|
||||
using namespace xlang::meta::reader;
|
||||
using namespace winmd::reader;
|
||||
|
||||
std::vector<std::string> db_files;
|
||||
std::unique_ptr<cache> db;
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
|
||||
using namespace Microsoft::VisualStudio::Debugger;
|
||||
using namespace Microsoft::VisualStudio::Debugger::Evaluation;
|
||||
using namespace std::literals;
|
||||
using namespace winrt;
|
||||
using namespace xlang;
|
||||
using namespace xlang::meta;
|
||||
using namespace xlang::meta::reader;
|
||||
using namespace winmd::impl;
|
||||
using namespace winmd::reader;
|
||||
|
||||
template <typename...T> struct overloaded : T... { using T::operator()...; };
|
||||
template <typename...T> overloaded(T...)->overloaded<T...>;
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include <memory>
|
||||
#include <variant>
|
||||
#include <cmd_reader.h>
|
||||
#include <meta_reader.h>
|
||||
#include <winmd_reader.h>
|
||||
|
||||
#ifndef IF_FAIL_RET
|
||||
#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)
|
|||
return result;
|
||||
}
|
||||
|
||||
xlang::meta::reader::TypeDef FindType(Microsoft::VisualStudio::Debugger::DkmProcess* process, std::string_view const& typeName);
|
||||
winmd::reader::TypeDef FindType(Microsoft::VisualStudio::Debugger::DkmProcess* process, std::string_view const& typeName);
|
||||
|
||||
enum class NatvisDiagnosticLevel
|
||||
{
|
||||
|
|
|
@ -5,9 +5,7 @@
|
|||
using namespace Microsoft::VisualStudio::Debugger;
|
||||
using namespace Microsoft::VisualStudio::Debugger::Evaluation;
|
||||
|
||||
using namespace xlang;
|
||||
using namespace xlang::meta;
|
||||
using namespace xlang::meta::reader;
|
||||
using namespace winmd::reader;
|
||||
|
||||
HRESULT property_visualizer::GetChildren(
|
||||
_In_ UINT32 InitialRequestSize,
|
||||
|
|
Загрузка…
Ссылка в новой задаче