Re: [v3 PATCH] Implement make_array and to_array from the Fundamentals v2 TS draft

2015-08-08 Thread Jonathan Wakely
On 07/08/15 09:37 +0100, Jonathan Wakely wrote: On 13/07/15 13:55 +0300, Ville Voutilainen wrote: +template +struct __is_reference_wrapper : false_type +{ }; Please indent the class-head and the body. +template +struct __is_reference_wrapper> : true_type +{ }; Likewise. +template +con

Re: [v3 PATCH] Implement make_array and to_array from the Fundamentals v2 TS draft

2015-08-07 Thread Jonathan Wakely
On 13/07/15 13:55 +0300, Ville Voutilainen wrote: +template +struct __is_reference_wrapper : false_type +{ }; Please indent the class-head and the body. +template +struct __is_reference_wrapper> : true_type +{ }; Likewise. +template +constexpr auto make_array(_Types&&... __t) Same he

Re: [v3 PATCH] Implement make_array and to_array from the Fundamentals v2 TS draft

2015-07-13 Thread Ville Voutilainen
On 13 July 2015 at 01:25, Ville Voutilainen wrote: > On 12 July 2015 at 21:45, Ville Voutilainen > wrote: >> Tested on Linux-PPC64. >> >> 2015-07-12 Ville Voutilainen >> Implement std::experimental::fundamentals_v2::make_array and >> std::experimental::fundamentals_v2::to_array. >>

Re: [v3 PATCH] Implement make_array and to_array from the Fundamentals v2 TS draft

2015-07-12 Thread Ville Voutilainen
On 12 July 2015 at 21:45, Ville Voutilainen wrote: > Tested on Linux-PPC64. > > 2015-07-12 Ville Voutilainen > Implement std::experimental::fundamentals_v2::make_array and > std::experimental::fundamentals_v2::to_array. > * include/Makefile.am: Add array. > * include/Makefile.in