Skip to content

Commit

Permalink
Update natvis files
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Sep 11, 2017
1 parent ab51af0 commit 8e9926a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions tools/VS/client_base.natvis
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>

<!-- Copyright (c) 2016 Hartmut Kaiser -->
<!-- Copyright (c) 2016-2017 Hartmut Kaiser -->

<!-- Use, modification and distribution are subject to the Boost Software -->
<!-- License, Version 1.0. (See accompanying file LICENSE_1_0.txt -->
Expand All @@ -15,7 +15,7 @@
<DisplayString Condition="shared_state_.px != 0 &amp;&amp; shared_state_.px->state_ == 5">ready(exception)</DisplayString>
<Expand>
<Item Name="[value]" Condition="shared_state_.px != 0 &amp;&amp; shared_state_.px->state_ == 3">*((hpx::naming::id_type*)(shared_state_.px->storage_.data_.buf))</Item>
<Item Name="[exception]" Condition="shared_state_.px != 0 &amp;&amp; shared_state_.px->state_ == 5">*((boost::exception_ptr*)(shared_state_.px->storage_.data_.buf))</Item>
<Item Name="[exception]" Condition="shared_state_.px != 0 &amp;&amp; shared_state_.px->state_ == 5">*((std::exception_ptr*)(shared_state_.px->storage_.data_.buf))</Item>
<Item Name="[count]" Condition="shared_state_.px != 0">shared_state_.px->count_</Item>
</Expand>
</Type>
Expand Down
10 changes: 5 additions & 5 deletions tools/VS/future.natvis
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>

<!-- Copyright (c) 2016 Hartmut Kaiser -->
<!-- Copyright (c) 2016-2017 Hartmut Kaiser -->

<!-- Use, modification and distribution are subject to the Boost Software -->
<!-- License, Version 1.0. (See accompanying file LICENSE_1_0.txt -->
Expand All @@ -13,7 +13,7 @@
<DisplayString Condition="shared_state_.px->state_ == 3">ready(value)</DisplayString>
<DisplayString Condition="shared_state_.px->state_ == 5">ready(exception)</DisplayString>
<Expand>
<Item Name="[value]" Condition="shared_state_.px->state_ == 5">*((boost::exception_ptr*)(shared_state_.px->storage_._Pad))</Item>
<Item Name="[value]" Condition="shared_state_.px->state_ == 5">*((std::exception_ptr*)(shared_state_.px->storage_._Pad))</Item>
</Expand>
</Type>

Expand All @@ -23,7 +23,7 @@
<DisplayString Condition="shared_state_.px->state_ == 5">ready(exception)</DisplayString>
<Expand>
<Item Name="[value]" Condition="shared_state_.px->state_ == 3">*(($T1 *)(shared_state_.px->storage_._Pad))</Item>
<Item Name="[exception]" Condition="shared_state_.px->state_ == 5">*((boost::exception_ptr*)(shared_state_.px->storage_._Pad))</Item>
<Item Name="[exception]" Condition="shared_state_.px->state_ == 5">*((std::exception_ptr*)(shared_state_.px->storage_._Pad))</Item>
</Expand>
</Type>

Expand All @@ -32,7 +32,7 @@
<DisplayString Condition="shared_state_.px->state_ == 3">ready(value)</DisplayString>
<DisplayString Condition="shared_state_.px->state_ == 5">ready(exception)</DisplayString>
<Expand>
<Item Name="[value]" Condition="shared_state_.px->state_ == 5">*((boost::exception_ptr*)(shared_state_.px->storage_._Pad))</Item>
<Item Name="[value]" Condition="shared_state_.px->state_ == 5">*((std::exception_ptr*)(shared_state_.px->storage_._Pad))</Item>
</Expand>
</Type>

Expand All @@ -42,7 +42,7 @@
<DisplayString Condition="shared_state_.px->state_ == 5">ready(exception)</DisplayString>
<Expand>
<Item Name="[value]" Condition="shared_state_.px->state_ == 3">*(($T1 *)(shared_state_.px->storage_._Pad))</Item>
<Item Name="[exception]" Condition="shared_state_.px->state_ == 5">*((boost::exception_ptr*)(shared_state_.px->storage_._Pad))</Item>
<Item Name="[exception]" Condition="shared_state_.px->state_ == 5">*((std::exception_ptr*)(shared_state_.px->storage_._Pad))</Item>
</Expand>
</Type>

Expand Down

0 comments on commit 8e9926a

Please sign in to comment.