Re: [PATCH libinput] Switch to _Static_assert from static_assert and make sure it exists

2016-05-15 Thread Jonas Ã…dahl
On Mon, May 16, 2016 at 11:46:28AM +1000, Peter Hutterer wrote: > _Static_assert is the C keyword, the lowercase version is the C++ one. > Add the required configure.ac bits if this is missing. static_assert isn't just C++, it's, just as _Static_assert, part of C11, except that it is, just as asse

[PATCH libinput] Switch to _Static_assert from static_assert and make sure it exists

2016-05-15 Thread Peter Hutterer
_Static_assert is the C keyword, the lowercase version is the C++ one. Add the required configure.ac bits if this is missing. Signed-off-by: Peter Hutterer --- configure.ac | 6 ++ src/evdev-tablet.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/configure.ac b/c