Kaydet (Commit) c06f9327 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix MSVC build

üst 86ffa606
......@@ -73,6 +73,13 @@ public:
using osl::Thread::schedule;
using osl::Thread::terminate;
// While the below static member functions should arguably always be called
// with qualified (osl::Thread) names, at least MSVC still would complain
// that they are inaccessible from within derivations of salhelper::Thread:
using osl::Thread::getCurrentIdentifier;
using osl::Thread::wait;
using osl::Thread::yield;
static inline void * operator new(std::size_t size)
{ return SimpleReferenceObject::operator new(size); }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment