summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2015-11-20 10:11:04 +0100
committerMurray Cumming <murrayc@murrayc.com>2015-11-20 10:18:15 +0100
commitf49998f7252464c28d7b558ea7dca4fcfddca3d7 (patch)
tree9a09657a0f329aa84847c864417786389005c04e /examples
parent760415293337380b9fa78000670f85bab7406bea (diff)
downloadglibmm-f49998f7252464c28d7b558ea7dca4fcfddca3d7.tar.gz
Examples: Use nullptr instead of 0.
Diffstat (limited to 'examples')
-rw-r--r--examples/thread/dispatcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/thread/dispatcher.cc b/examples/thread/dispatcher.cc
index e58cb227..84868db8 100644
--- a/examples/thread/dispatcher.cc
+++ b/examples/thread/dispatcher.cc
@@ -108,7 +108,7 @@ void ThreadProgress::launch()
void ThreadProgress::join()
{
thread_->join();
- thread_ = 0;
+ thread_ = nullptr;
}
bool ThreadProgress::unfinished() const