Opened 10 years ago

Closed 10 years ago

#7281 closed Feature Requests (fixed)

C++11 compliance: Add ArgTypes to packaged_task template

Reported by: viboes Owned by: viboes
Milestone: Boost 1.53.0 Component: thread
Version: Boost 1.51.0 Severity: Problem
Keywords: Cc:

Description

The following should be taken in account

    template<class R, class... ArgTypes>
    class packaged_task<R(ArgTypes...)> {
    public:
// execution
      void operator()(ArgTypes... );
      void make_ready_at_thread_exit(ArgTypes...);

Change History (5)

comment:1 by viboes, 10 years ago

Owner: changed from Anthony Williams to viboes
Status: newassigned

comment:2 by viboes, 10 years ago

Unfortunately this breaks the current interface. I will add it for version 4. If variadic templates are not available only the signature R() will be provided

    template<class R>
    class packaged_task<R()> {
    public:
      void operator()();

comment:3 by viboes, 10 years ago

Milestone: To Be Determined

Committed in trunk [80755].

comment:4 by viboes, 10 years ago

Milestone: Boost 1.53.0

comment:5 by viboes, 10 years ago

Resolution: fixed
Status: assignedclosed

Committed revision [81667].

Last edited 10 years ago by viboes (previous) (diff)
Note: See TracTickets for help on using tickets.