Kaydet (Commit) 081e27ca authored tarafından Mike Kaganski's avatar Mike Kaganski

Natvis: VS has trouble showing sequence of signed char

Provide a visualizer specialization for this case

Change-Id: I54c293972c7e883b8328958f748dba5f2dbd0636
Reviewed-on: https://gerrit.libreoffice.org/65327
Tested-by: Jenkins
Reviewed-by: 's avatarMike Kaganski <mike.kaganski@collabora.com>
üst 6251e408
......@@ -113,6 +113,16 @@
<DisplayString Condition="nElements == 0">_sal_Sequence (empty)</DisplayString>
<DisplayString>_sal_Sequence of {nElements,d} elements</DisplayString>
</Type>
<Type Name="com::sun::star::uno::Sequence &lt; signed char &gt;">
<DisplayString Condition="_pSequence->nElements == 0">Sequence (empty)</DisplayString>
<DisplayString>Sequence of {_pSequence->nElements,d} signed char</DisplayString>
<Expand>
<ArrayItems>
<Size>_pSequence->nElements</Size>
<ValuePointer>reinterpret_cast &lt; const char* &gt;( _pSequence->elements )</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="com::sun::star::uno::Sequence &lt; * &gt;">
<DisplayString Condition="_pSequence->nElements == 0">Sequence (empty)</DisplayString>
<DisplayString>Sequence of {_pSequence->nElements,d} {"$T1",sb}</DisplayString>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment