This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH 3/4] gdb/riscv: Create each unique target description only once
On 11/29/2018 10:32 PM, Andrew Burgess wrote:
> +/* Wrapper used by std::unordered_map to generate hash for feature set. */
> +struct riscv_gdbarch_features_hasher
> +{
> + std::size_t
> + operator() (struct riscv_gdbarch_features const& features) const noexcept
I don't think we do "east const" in gdb.
Also, '&' is formatted like '*'.
Might as well drop the "struct" while at it (I'd do that in a number
of places).
That leaves:
operator() (const riscv_gdbarch_features &features) const noexcept
Otherwise looks fine. Thanks!
Pedro Alves