From 87e619485d3402ccccff6d727cd9cd655079e04b Mon Sep 17 00:00:00 2001 From: q66 Date: Thu, 30 Mar 2017 17:53:37 +0200 Subject: [PATCH] remove ostd:: --- examples/concurrency.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/concurrency.cc b/examples/concurrency.cc index 1f4721a..6f5d5d2 100644 --- a/examples/concurrency.cc +++ b/examples/concurrency.cc @@ -9,7 +9,7 @@ int main() { * on the scheduler currently in use - several schedulers are shown */ auto foo = []() { - auto arr = ostd::iter({ 150, 38, 76, 25, 67, 18, -15, 215, 25, -10 }); + auto arr = iter({ 150, 38, 76, 25, 67, 18, -15, 215, 25, -10 }); auto c = make_channel(); auto f = [](auto c, auto half) {