Fix cppwinrtvisualizer compilation

This commit is contained in:
William Kent 2019-10-10 17:27:42 -04:00 коммит произвёл William Kent
Родитель 772622e65b
Коммит b92febd87b
4 изменённых файлов: 7 добавлений и 11 удалений

Просмотреть файл

@ -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,