mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
### Description - Fix Abseil::InlinedVector inlined storage visualization - Fix typo in protobuf natvis. - Add basic gsl.natvis ### Motivation and Context Debugging is hard.
14 lines
536 B
XML
14 lines
536 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
|
<Type Name="gsl::span<*>">
|
|
<Intrinsic Name="_size" Expression="(last_ - first_)"/>
|
|
<DisplayString>{{ size={ _size() }}}</DisplayString>
|
|
<Expand>
|
|
<Item Name="[size]" ExcludeView="simple">_size()</Item>
|
|
<IndexListItems Condition="_size() > 0">
|
|
<Size>_size()</Size>
|
|
<ValueNode>first_[$i]</ValueNode>
|
|
</IndexListItems>
|
|
</Expand>
|
|
</Type>
|
|
</AutoVisualizer>
|