blob: 5ed32c04fd79f151f3b8943d237e0fcc4a7bdd0a (
plain)
1
2
3
4
5
6
7
8
9
10
|
Fix invalid c++: https://bugs.gentoo.org/671726
--- a/gdb/sparc-linux-nat.c
+++ b/gdb/sparc-linux-nat.c
@@ -36,5 +36,5 @@ public:
{ sparc_fetch_inferior_registers (regcache, regnum); }
- void store_registers (struct regcache *regcache, int regnum) override;
+ void store_registers (struct regcache *regcache, int regnum) override
{ sparc_store_inferior_registers (regcache, regnum); }
};
|