-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
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
Demangling of symbol causes recursive error #95
Comments
Thanks for the bug report! |
|
I don't know what version of |
Tried it with a freshly-compiled GNU c++filt 2.28, same thing. |
Tried it with c++filt from https://github.com/Chilledheart/llvm-tools with LLVM 3.7, didn't work. |
OSX uses two underscores, other *nix use one underscore, so if you try removing one of the leading underscores, you'll probably have better luck. I was on OSX when I ran |
|
When trying to demangle the symbol
__ZN7ErrorOrIN5lexer5TokenENS0_8LexErrorEEC2IS2_EET_PNSt9enable_ifIXsr3std10is_base_ofIS2_NSt5decayIS5_E4typeEEE5valueEvE4typeE
I get
error: demangling some part of the AST attempted to demangle itself again
.This is a symbol generated by clang++ (c++14), and I think corresponds to something like that:
template <typename E> ErrorOr<lexer::Token, lexer::LexError>::ErrorOr(E, typename enable_if<std::is_base_of<lexer::LexError, typename std::decay<E>::type>::value>::type)
for some value of E (maybelexer::LexError
?)The text was updated successfully, but these errors were encountered: