Add natvis file for boost::container::small_vector

This commit is contained in:
Exzap 2024-10-23 08:36:37 +02:00
parent f94f99546d
commit 6833b33c31

14
boost.natvis Normal file
View file

@ -0,0 +1,14 @@
<?xml version='1.0' encoding='utf-8'?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="boost::container::small_vector&lt;*&gt;">
<Expand>
<Item Name="[size]">m_holder.m_size</Item>
<ArrayItems>
<Size>m_holder.m_size</Size>
<ValuePointer>m_holder.m_start</ValuePointer>
</ArrayItems>
</Expand>
</Type>
</AutoVisualizer>