From c073ed8f702e98ec56ed05e0c02167e355e6ee31 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 24 Mar 2020 01:34:52 +0300 Subject: switch to Boost.Nowide everywhere --- include/pdb/symbol.hpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'include/pdb/symbol.hpp') diff --git a/include/pdb/symbol.hpp b/include/pdb/symbol.hpp index 25e997b..6a62e22 100644 --- a/include/pdb/symbol.hpp +++ b/include/pdb/symbol.hpp @@ -8,8 +8,6 @@ #include "address.hpp" #include "module.hpp" -#include - #include #include @@ -35,7 +33,7 @@ static_assert(static_cast(SymTagFunction) == SYM_TAG_FUNCTION, class SymbolInfo { public: - typedef SYMBOL_INFO Impl; + typedef SYMBOL_INFOW Impl; SymbolInfo(); explicit SymbolInfo(const Impl& impl); @@ -46,7 +44,7 @@ public: Address get_displacement() const { return displacement; } void set_displacement(Address new_value) { displacement = new_value; } - std::string get_name() const { return {get_impl().Name, get_impl().NameLen}; } + std::string get_name() const; Address get_offline_base() const { return get_impl().ModBase; } Address get_offline_address() const { return get_impl().Address; } @@ -85,7 +83,7 @@ private: class LineInfo { public: - typedef IMAGEHLP_LINE64 Impl; + typedef IMAGEHLP_LINEW64 Impl; explicit LineInfo(const Impl& impl); -- cgit v1.2.3