Fix clang/libc++ build
authorPedro Alves <palves@redhat.com>
Thu, 24 Jan 2019 18:01:49 +0000 (18:01 +0000)
committerPedro Alves <palves@redhat.com>
Thu, 24 Jan 2019 18:01:49 +0000 (18:01 +0000)
This fixes the following build error with clang/libc++, reported at
<https://sourceware.org/ml/gdb-patches/2019-01/msg00537.html>:

  (...)
  In file included from breakpoint.c:34:
  In file included from ./inferior.h:54:
  ./common/forward-scope-exit.h:98:7: error: no matching constructor for
  initialization of 'decltype(std::bind(&delete_longjmp_breakpoint,
  std::declval<int>()))' (aka '__bind<void (*)(int), int>')
      : m_bind_function (std::bind (function, args...))
^                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ./common/gdb_optional.h:155:19: note: in instantiation of member
  function 'detail::forward_scope_exit<void (int),
  &delete_longjmp_breakpoint, void (int)>::forward_scope_exit' requested
  here
      new (&m_item) T (std::forward<Args>(args)...);
    ^
  breakpoint.c:11127:18: note: in instantiation of function template
  specialization 'gdb::optional<detail::forward_scope_exit<void (int),
  &delete_longjmp_breakpoint, void (int)> >::emplace<int &>' requested
  here
lj_deleter.emplace (thread);
   ^
  /Applications/Xcode-10.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/functional:2220:7:
  note: candidate constructor (the implicit copy constructor) not
  viable: no known conversion from '__bind<[...], int &>' to 'const
  __bind<[...], int>' for 1st argument
  class __bind
^
  (...)

I don't really know why I ended up with a copy here.  We can just pass
the arguments directly to the being-constructed bind.

gdb/ChangeLog:
2019-01-24  Pedro Alves  <palves@redhat.com>

* common/forward-scope-exit.h
(forward_scope_exit::forward_scope_exit): Pass arguments to
m_bind_function directly, instead of creating a std::bind and
copying that.

gdb/ChangeLog
gdb/common/forward-scope-exit.h

index 453677e5999a7bb45b542047dc44a8617103b5c8..e8e01288d96d65dd5dd5b9ad3dd43ddf43d1fdba 100644 (file)
@@ -1,3 +1,10 @@
+2019-01-24  Pedro Alves  <palves@redhat.com>
+
+       * common/forward-scope-exit.h
+       (forward_scope_exit::forward_scope_exit): Pass arguments to
+       m_bind_function directly, instead of creating a std::bind and
+       copying that.
+
 2019-01-24  Alan Hayward  <alan.hayward@arm.com>
 
        * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
index 8d639151a437e426eb9173ff1feb7868f1cacaf8..bffc6e683ba0d50d306fbddaea5eeece8d0fc9ec 100644 (file)
@@ -95,7 +95,7 @@ class forward_scope_exit<Function, function, Res (Args...)>
 
 public:
   explicit forward_scope_exit (Args ...args)
-    : m_bind_function (std::bind (function, args...))
+    : m_bind_function (function, args...)
   {
     /* Nothing.  */
   }
This page took 0.026354 seconds and 4 git commands to generate.