Merge pull request #703 from amdn/master

T.44: Added `s` suffix to string literal
This commit is contained in:
Gabriel Dos Reis
2016-09-12 11:13:04 -07:00
committed by GitHub

View File

@@ -14804,7 +14804,7 @@ Note that C++17 will make this rule redundant by allowing the template arguments
[Template parameter deduction for constructors (Rev. 3)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0091r1.html). [Template parameter deduction for constructors (Rev. 3)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0091r1.html).
For example: For example:
tuple t1 = {1, "Hamlet", 3.14}; // deduced: tuple<int, string, double> tuple t1 = {1, "Hamlet"s, 3.14}; // deduced: tuple<int, string, double>
##### Enforcement ##### Enforcement