diff options
| author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-16 00:02:11 +0000 |
|---|---|---|
| committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-16 00:02:11 +0000 |
| commit | 1fef465184785aed8ac38d77bb76114ec0373fb6 (patch) | |
| tree | 6069b01288e7a9197753cae20a512af6bf08094a /libstdc++-v3/include/std/thread | |
| parent | a07db4f1b3ab5ef54fd978a7286d032f5647e3af (diff) | |
| download | ppe42-gcc-1fef465184785aed8ac38d77bb76114ec0373fb6.tar.gz ppe42-gcc-1fef465184785aed8ac38d77bb76114ec0373fb6.zip | |
2011-03-15 Benjamin Kosnik <bkoz@redhat.com>
* include/std/thread: Revert.
* src/thread.cc: Same.
* config/abi/pre/gnu.ver: Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171021 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/std/thread')
| -rw-r--r-- | libstdc++-v3/include/std/thread | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libstdc++-v3/include/std/thread b/libstdc++-v3/include/std/thread index e43c126cdce..de58e814100 100644 --- a/libstdc++-v3/include/std/thread +++ b/libstdc++-v3/include/std/thread @@ -100,7 +100,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION { __shared_base_type _M_this_ptr; - virtual ~_Impl_base(); + inline virtual ~_Impl_base(); virtual void _M_run() = 0; }; @@ -195,6 +195,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } }; + inline thread::_Impl_base::~_Impl_base() = default; + inline void swap(thread& __x, thread& __y) { __x.swap(__y); } |

