diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-10-04 16:44:49 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-10-04 16:44:49 +0200 |
commit | 7669fe138ac6facaf1e6221f666b831cff4dfbea (patch) | |
tree | 3fae0f5218efb1d6bbfc0ec79ca9318d4f3040a4 | |
parent | 8689838a9c90699f1cfede7fd549a2945b9295db (diff) |
Add missing semicolon
-rw-r--r-- | odb/details/posix/thread.ixx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/details/posix/thread.ixx b/odb/details/posix/thread.ixx index afc72a1..ed831c2 100644 --- a/odb/details/posix/thread.ixx +++ b/odb/details/posix/thread.ixx @@ -12,7 +12,7 @@ namespace odb ~thread () { if (!detached_) - pthread_detach (id_) + pthread_detach (id_); } inline void* thread:: |