From cdd7b475b3af78614c7f58cd0061384addd73838 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Wed, 18 Dec 2013 13:36:13 +0100 Subject: [PATCH] * lib/argp.h: Fix compilation with g++-4.6 -std=c++0x. --- lib/argp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/argp.h b/lib/argp.h index a5f686a97..99ea26a02 100644 --- a/lib/argp.h +++ b/lib/argp.h @@ -620,7 +620,7 @@ __argp_usage (const struct argp_state *__state) } ARGP_EI int -__NTH (__option_is_short (const struct argp_option *__opt)) +__option_is_short (const struct argp_option *__opt) { if (__opt->flags & OPTION_DOC) return 0; @@ -632,7 +632,7 @@ __NTH (__option_is_short (const struct argp_option *__opt)) } ARGP_EI int -__NTH (__option_is_end (const struct argp_option *__opt)) +__option_is_end (const struct argp_option *__opt) { return !__opt->key && !__opt->name && !__opt->doc && !__opt->group; }