From 1b9b9823d4619ef62783e25768b9460dcde55a74 Mon Sep 17 00:00:00 2001 From: "Taylor C. Richberger" Date: Wed, 11 May 2016 18:10:53 -0600 Subject: add mapping flag, throw maperror, ensure throwing works properly --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index a1abbcf..18ac5e4 100644 --- a/README.md +++ b/README.md @@ -492,7 +492,7 @@ Argument 'numbers' received invalid value type 'a' ```cpp #include #include -#include + std::istream& operator>>(std::istream& is, std::tuple& ints) { is >> std::get<0>(ints); @@ -501,6 +501,8 @@ std::istream& operator>>(std::istream& is, std::tuple& ints) return is; } +#include + void DoublesReader(const std::string &name, const std::string &value, std::tuple &destination) { size_t commapos = 0; -- cgit v1.2.1