6

我想为(C++)模板类扩展一个 natvis 可视化器。有没有办法显示第一个模板参数的类型名称?

boost::variant<int,bool> v; v=1;展示1 (int)或类似的东西会很棒

4

2 回答 2

11

If you want to show $T1 as a string, wrap it with ". For example, for

<DisplayString>{*($T1*)storage_.data_.buf} {"$T1"}</DisplayString>

in your case you will see 1 "int"

于 2019-05-08T15:40:59.500 回答
1
于 2019-02-02T20:05:24.250 回答