commit | da3ce5c46e1d5a87f2d3cb90cbc1b67a3b8fbb34 | [log] [tgz] |
---|---|---|
author | Tom Tromey <tom@tromey.com> | Sat Apr 20 16:33:37 2024 -0600 |
committer | Tom Tromey <tom@tromey.com> | Tue May 14 13:28:40 2024 -0600 |
tree | 76ae5e17642bb4ba6ce9a1e47ef4ec4442e14314 | |
parent | 3b099df59c47c4f09da0941c096098dde00a87dc [diff] |
Add spaceship operator to cp-name-parser.y While debugging gdb, I saw this: During symbol reading: unexpected demangled name 'operator<=><std::chrono::_V2::system_clock, std::chrono::duration<long int>, std::chrono::duration<long int> >' This happens because cp-name-parser.y does not handle the spaceship operator. This patch implements this. Approved-By: John Baldwin <jhb@FreeBSD.org>