Skip to content

Commit be7ef02

Browse files
Avoid digraph in AtomicObject. (#1245)
1 parent bb580da commit be7ef02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/hx/StdLibs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ inline void* _hx_atomic_compare_exchange_cast_ptr(void *a, void *expected, void
488488
#include <atomic>
489489

490490
struct AtomicObject: hx::Object {
491-
std::atomic<::hx::Object *> aPtr;
491+
std::atomic< ::hx::Object *> aPtr;
492492

493493
AtomicObject(Dynamic val) { aPtr = val.mPtr; }
494494

0 commit comments

Comments
 (0)