File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ void SafepointLocker<M>::AcquireLock() {
7272}
7373
7474template <typename M>
75- M::WaitResult SafepointLocker<M>::Wait(int64_t millis) {
75+ typename M::WaitResult SafepointLocker<M>::Wait(int64_t millis) {
7676 Thread* thread = Thread::Current ();
7777 if (thread != nullptr ) {
7878 typename M::WaitResult result;
Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ class SafepointLocker : public ValueObject {
279279 explicit SafepointLocker (M* monitor) : monitor_(monitor) { AcquireLock (); }
280280 virtual ~SafepointLocker () { ReleaseLock (); }
281281
282- M::WaitResult Wait (int64_t millis = Monitor::kNoTimeout );
282+ typename M::WaitResult Wait (int64_t millis = Monitor::kNoTimeout );
283283
284284 void NotifyAll () { monitor_->NotifyAll (); }
285285
You can’t perform that action at this time.
0 commit comments