Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions extra/int128.natvis
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

<!-- uint128_t: unsigned 128-bit integer -->
<Type Name="boost::int128::uint128_t">
<DisplayString Condition="high == 0">{low,u}</DisplayString>
<DisplayString>0x{high>>60&amp;0xF,X}{high>>56&amp;0xF,X}{high>>52&amp;0xF,X}{high>>48&amp;0xF,X}{high>>44&amp;0xF,X}{high>>40&amp;0xF,X}{high>>36&amp;0xF,X}{high>>32&amp;0xF,X}{high>>28&amp;0xF,X}{high>>24&amp;0xF,X}{high>>20&amp;0xF,X}{high>>16&amp;0xF,X}{high>>12&amp;0xF,X}{high>>8&amp;0xF,X}{high>>4&amp;0xF,X}{high&amp;0xF,X}'{low>>60&amp;0xF,X}{low>>56&amp;0xF,X}{low>>52&amp;0xF,X}{low>>48&amp;0xF,X}{low>>44&amp;0xF,X}{low>>40&amp;0xF,X}{low>>36&amp;0xF,X}{low>>32&amp;0xF,X}{low>>28&amp;0xF,X}{low>>24&amp;0xF,X}{low>>20&amp;0xF,X}{low>>16&amp;0xF,X}{low>>12&amp;0xF,X}{low>>8&amp;0xF,X}{low>>4&amp;0xF,X}{low&amp;0xF,X}</DisplayString>
<DisplayString Condition="high == 0">{low,d}</DisplayString>
<DisplayString Condition="high != 0">0x{high,nvohb}{low,nvohb}</DisplayString>
<Expand>
<Item Name="high">high</Item>
<Item Name="low">low</Item>
Expand Down
Loading