ここから EASTL を入手しました - https://github.com/paulhodge/EASTL
デバッグのために、カスタム ビジュアライザー VS2012/2013 を作成しています。
「eastl::vector」は正常に機能しますが、「eastl::map」は機能しません。
これが私のコードです
<Type Name="eastl::map<*>">
<DisplayString>{{size = {mnSize}}}</DisplayString>
<Expand>
<Item Name="[size]">mnSize</Item>
<Item Name="[comp]">mCompare</Item>
<TreeItems>
<Size>mnSize</Size>
<HeadPointer>mAnchor.mpNodeParent</HeadPointer>
<LeftPointer>mpNodeLeft</LeftPointer>
<RightPointer>mpNodeRight</RightPointer>
<ValueNode>(node_type*)this->mValue</ValueNode>
</TreeItems>
</Expand>
</Type>
VSが「node_type」を認識していないようです
返信ありがとうございます。