We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d069fff commit 523ae8eCopy full SHA for 523ae8e
lib/IRGen/IRGenDebugInfo.cpp
@@ -912,9 +912,7 @@ class IRGenDebugInfoImpl : public IRGenDebugInfo {
912
Mangle::ASTMangler Mangler;
913
std::string Result = Mangler.mangleTypeForDebugger(Ty, Sig);
914
915
- // TODO(https://github.com/apple/swift/issues/57699): We currently cannot round trip some C++ types.
916
- if (!Opts.DisableRoundTripDebugTypes &&
917
- !Ty->getASTContext().LangOpts.EnableCXXInterop) {
+ if (!Opts.DisableRoundTripDebugTypes) {
918
// Make sure we can reconstruct mangled types for the debugger.
919
auto &Ctx = Ty->getASTContext();
920
Type Reconstructed = Demangle::getTypeForMangling(Ctx, Result);
0 commit comments