diff options
Diffstat (limited to 'gdbsupport/eintr.h')
-rw-r--r-- | gdbsupport/eintr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbsupport/eintr.h b/gdbsupport/eintr.h index f78d0ec..3bb7693 100644 --- a/gdbsupport/eintr.h +++ b/gdbsupport/eintr.h @@ -51,7 +51,7 @@ namespace gdb template<typename ErrorValType, typename Fun, typename... Args> inline auto -handle_eintr (ErrorValType errval, const Fun &f, const Args &... args) +handle_eintr (ErrorValType errval, const Fun &f, const Args &...args) -> decltype (f (args...)) { decltype (f (args...)) ret; |