Tencent / flare

Flare是广泛投产于腾讯广告后台的现代化C++开发框架,包含了基础库、RPC、各种客户端等。主要特点为易用性强、长尾延迟低。
Other
1.33k stars 200 forks source link

feat#complete the Demangle function implementation in MSVC compiler #41

Closed mzygQAQ closed 3 years ago

mzygQAQ commented 3 years ago

typeid(instance).name() already returns the undecorated name since Microsoft Visio Studio 2019, and further demangling is not required. ` struct Dummy {};

int main() { std::cout << typeid(Dummy).name() << std::endl; }

` output: struct Dummy