Format code

This commit is contained in:
yhirose 2019-08-06 18:12:05 +09:00
parent d58deddbcc
commit d7bb402ca7
2 changed files with 10 additions and 9 deletions

View file

@ -511,8 +511,7 @@ protected:
.Get("/streamed",
[&](const Request & /*req*/, Response &res) {
res.set_content_provider(
6,
[](uint64_t offset, uint64_t /*length*/, Out out) {
6, [](uint64_t offset, uint64_t /*length*/, Out out) {
out(offset < 3 ? "a" : "b", 1);
});
})