From 6d83e819df0c71868d04db46c60ff0ecf8cf1914 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sat, 2 Dec 2017 20:28:22 -0500 Subject: [PATCH] Fix typo in poison.h gdb/ChangeLog: * common/poison.h (XDELETE): Fix typo. --- gdb/ChangeLog | 4 ++++ gdb/common/poison.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fd027b2c813..3a7b654d1cf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2017-12-02 Simon Marchi + + * common/poison.h (XDELETE): Fix typo. + 2017-12-01 Andrew Cagney Joel Brobecker Sergio Durigan Junior diff --git a/gdb/common/poison.h b/gdb/common/poison.h index 1647c9cb6fe..e28b0e09d8e 100644 --- a/gdb/common/poison.h +++ b/gdb/common/poison.h @@ -130,7 +130,7 @@ data type. Use operator delete instead."); } #undef XDELETE -#define XDELETE(P) xdelete (p) +#define XDELETE(P) xdelete (P) template static T * -- 2.30.2