We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On clang we want to use the std::unordered_map version of TfHashMap and TfHashSet:
The failing version check reads as follows:
#elif __cplusplus > 201103L // Use C++11 unordered_map. #include <unordered_map>
But should read:
#elif __cplusplus >= 201103L // Use C++11 unordered_map. #include <unordered_map>
I am guessing that this test would hold true on other compilers...?
The text was updated successfully, but these errors were encountered:
Filed as internal issue #141456.
Sorry, something went wrong.
c288d89
[OGS-11162] Add paragraph support in USD (PixarAnimationStudios#127)
88407a3
Add paragraph support in USD
No branches or pull requests
On clang we want to use the std::unordered_map version of TfHashMap and TfHashSet:
The failing version check reads as follows:
But should read:
I am guessing that this test would hold true on other compilers...?
The text was updated successfully, but these errors were encountered: