From 9fb11986a521838e98c1adf8fd1b02a930ebd85d Mon Sep 17 00:00:00 2001 From: Daniel Zehe <11657228+danielzehe@users.noreply.github.com> Date: Fri, 1 Nov 2019 14:35:17 +0800 Subject: [PATCH] Update README.md added return true to the content provider get example, doesn't compile without it --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d98945f..8c2a4d6 100644 --- a/README.md +++ b/README.md @@ -196,6 +196,7 @@ int main(void) auto res = cli.Get("/large-data", [&](const char *data, uint64_t data_length) { body.append(data, data_length); + return true; }); assert(res->body.empty());