oops, don't use vista-only function

This commit is contained in:
David Rose 2008-08-28 22:33:12 +00:00
parent 6452ae6fae
commit 6718f4c9df

View File

@ -142,7 +142,7 @@ join() {
string ThreadWin32Impl:: string ThreadWin32Impl::
get_unique_id() const { get_unique_id() const {
ostringstream strm; ostringstream strm;
strm << GetCurrentProcessId() << "." << GetThreadId(_thread); strm << GetCurrentProcessId() << "." << _thread_id;
return strm.str(); return strm.str();
} }