diff options
author | Marcin Kolny <marcin.kolny@gmail.com> | 2015-08-08 14:45:12 +0200 |
---|---|---|
committer | Marcin Kolny <marcin.kolny@gmail.com> | 2015-08-08 14:45:59 +0200 |
commit | 0d5f63b18f5766760cf39e82ee11482984e0a938 (patch) | |
tree | e3f74b9b37e7618c92840024077dff43e6d08f0d /examples/thread/threadpool.cc | |
parent | dce7a844e48a582e42eb2b60eef5c1f2527540ac (diff) | |
parent | d94115843f38967b5e883f5f7d8057882ae364cb (diff) | |
download | glibmm-gir-gmmproc.tar.gz |
Merge branch 'master' into glibmm-gir-gmmprocglibmm-gir-gmmproc
Diffstat (limited to 'examples/thread/threadpool.cc')
-rw-r--r-- | examples/thread/threadpool.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/thread/threadpool.cc b/examples/thread/threadpool.cc index 632a77af..557997f4 100644 --- a/examples/thread/threadpool.cc +++ b/examples/thread/threadpool.cc @@ -15,7 +15,7 @@ void print_char(char c) { Glib::Rand rand; - for(int i = 0; i < 100; ++i) + for(auto i = 0; i < 100; ++i) { { Glib::Threads::Mutex::Lock lock (mutex); @@ -33,7 +33,7 @@ int main(int, char**) { Glib::ThreadPool pool (10); - for(char c = 'a'; c <= 'z'; ++c) + for(auto c = 'a'; c <= 'z'; ++c) { pool.push(sigc::bind<1>(sigc::ptr_fun(&print_char), c)); } |