-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontainers.natvis
34 lines (34 loc) · 1.26 KB
/
containers.natvis
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="gba::integer<*>">
<DisplayString>{value_}</DisplayString>
</Type>
<Type Name="gba::vector<*>">
<DisplayString>{data_}</DisplayString>
<Expand><ExpandedItem>data_</ExpandedItem></Expand>
</Type>
<Type Name="gba::static_vector<*>">
<DisplayString>{storage_} size={size_}</DisplayString>
<Expand>
<Item Name="[capacity]" ExcludeView="simple">$T2</Item>
<ArrayItems>
<Size>size_.value_</Size>
<ValuePointer>($T1*)storage_._data</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="gba::array<*>">
<DisplayString>{_data}</DisplayString>
<Expand><ExpandedItem>_data</ExpandedItem></Expand>
</Type>
<Type Name="gba::view<*>">
<DisplayString>{entries_} size={size_}</DisplayString>
<Expand>
<Item Name="[size]" ExcludeView="simple">size_</Item>
<ArrayItems>
<Size>size_.value_</Size>
<ValuePointer>entries_</ValuePointer>
</ArrayItems>
</Expand>
</Type>
</AutoVisualizer>