我在使用 Visual Studio 2015 的 natvis 扩展时遇到问题。在我的努力中,我需要访问地图,但TreeItems
natvis 的节点似乎对我不起作用。我实际上正在使用示例代码:
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="std::map<*>">
<DisplayString>{{size = {_Mysize}}}</DisplayString>
<Expand>
<Item Name="[size]">_Mysize</Item>
<Item Name="[comp]">comp</Item>
<TreeItems>
<Size>_Mysize</Size>
<HeadPointer>_Myhead->_Parent</HeadPointer>
<LeftPointer>_Left</LeftPointer>
<RightPointer>_Right</RightPointer>
<ValueNode Condition="!((bool)_Isnil)">_Myval</ValueNode>
</TreeItems>
</Expand>
</Type>
</AutoVisualizer>
但是我在 map<int,int> 上得到了这个错误:
Error: Function std::_Tree_comp_alloc<std::_Tmap_traits<int,int,std::less<int>,std::allocator<std::pair<int const ,int> >,0> >::_Mysize has no address, possibly due to compiler optimizations.
Error while evaluating '_Mysize' in the context of type 'Program.exe!std::map<int,int,std::less<int>,std::allocator<std::pair<int const ,int> > >'.
我正在调试模式下构建,我仔细检查了优化被禁用(\Od)
也许 msvc2015 的 natvis 定义已更改,但我找不到任何东西。也许示例代码不应该工作,但我发现很难从一个不工作的例子开始。