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
Steps to reproduce:
> cat test.cpp #include <deque> int main(int argc, char **argv) { std::deque<int> a = {3, 1, 2}; return 0; // Set break point at this line. } > clang++ test.cpp -stdlib=libc++ -g -o test.out > lldb (lldb) settings set target.import-std-module true (lldb) file test.out (lldb) br set -p "// Set break" (lldb) run (lldb) expr -- std::deque<int>({1,2,3}).front() lldb: .../lldb/source/Plugins/ExpressionParser/Clang/ClangASTImporter.cpp:258: virtual anonymous}::CompleteTagDeclsScope::~CompleteTagDeclsScope(): Assertion `to_context_md->getOrigin(decl).ctx == m_src_ctx' failed. ....
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-lldb
Author: Igor Kudrin (igorkudrin)
int main(int argc, char **argv) { std::deque<int> a = {3, 1, 2}; return 0; // Set break point at this line. } > clang++ test.cpp -stdlib=libc++ -g -o test.out > lldb (lldb) settings set target.import-std-module true (lldb) file test.out (lldb) br set -p "// Set break" (lldb) run (lldb) expr -- std::deque<int>({1,2,3}).front() lldb: .../lldb/source/Plugins/ExpressionParser/Clang/ClangASTImporter.cpp:258: virtual anonymous}::CompleteTagDeclsScope::~CompleteTagDeclsScope(): Assertion `to_context_md->getOrigin(decl).ctx == m_src_ctx' failed. ....
</details>
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
The text was updated successfully, but these errors were encountered: