Skip to content

Commit bb08773

Browse files
committed
[Clang] fix compile error in Job.h
1 parent 1cd6fcc commit bb08773

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Engine/Source/JobSystemModule/Public/JobSystem

Engine/Source/JobSystemModule/Public/JobSystem/Job.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ namespace Volt
101101
private:
102102
friend class JobSystem;
103103

104-
constexpr inline static Job* const WaitingListClosed = reinterpret_cast<Job*>(uintptr_t(1));
104+
inline static Job* const WaitingListClosed = reinterpret_cast<Job*>(uintptr_t(1));
105105

106106
// Used for the waiting list.
107107
std::atomic<class Job*> m_waiterHead = nullptr;

0 commit comments

Comments
 (0)