You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The value part uses m_values.m_blocks[0][idx2] but it should use m_values.m_blocks[idx1][idx2] to match the key part. Currently, it always shows values from block 0, which would display incorrect values for elements in blocks 1+.
The same issue exists in line 34 for segmented_set
Before I can merge this, is can you remove the hardcoded versions in the file? If not then you need to update the lint-version.py file to detect these, so they are not forgotten when updating the version.
can you remove the hardcoded versions in the file?
So I checked and it seems as if visual studio does not support this.
Methods I tried:
Removing the inline namespace from the type declaration <Type Name="ankerl::unordered_dense::detail:: ...
Using a wildcard to replace the version part of the type declaration <Type Name="ankerl::unordered_dense::*::detail:: ...
Using a wildcard to partially replace the version part of the type declaration <Type Name="ankerl::unordered_dense::v*::detail:: ...
None of them work, so I can only assume it's not supported :(
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
natvis for Visual Studio. (Requires PR#134 to compile)
(Screenshots attached)



