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/thread.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/thread.cc')
-rw-r--r-- | examples/thread/thread.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/thread/thread.cc b/examples/thread/thread.cc index ad7cfebd..6fb546c1 100644 --- a/examples/thread/thread.cc +++ b/examples/thread/thread.cc @@ -36,7 +36,7 @@ void MessageQueue::producer() { Glib::Rand rand (1234); - for(int i = 0; i < 200; ++i) + for(auto i = 0; i < 200; ++i) { { Glib::Threads::Mutex::Lock lock (mutex_); |