Re: [libstdc++, C++17] Implement C++17 P0330 size_t UDL.

2016-07-21 Thread Jonathan Wakely
On 21/07/16 00:18 -0400, Ed Smith-Rowland wrote: This patch defines operator""zu(unsigned long long __n) for size_t literals. for (auto k = 0zul; k < v.size(); ++k) ... Testing on x86-64-linux is finishing but I'm past these tests. OK? P0330 isn't in C++17. In Oulu LEWG voted to

[libstdc++, C++17] Implement C++17 P0330 size_t UDL.

2016-07-20 Thread Ed Smith-Rowland
This patch defines operator""zu(unsigned long long __n) for size_t literals. for (auto k = 0zul; k < v.size(); ++k) ... Testing on x86-64-linux is finishing but I'm past these tests. OK? Ed 2016-07-21 Edward Smith-Rowland <3dw...@verizon.net> Implement C++17 P0330