mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Change to ISO C90 comment style to fix warning in sayrer's last patch.
This commit is contained in:
parent
d91f780693
commit
6f59510259
@ -106,7 +106,7 @@ js_CompareAndSwap(jsword *w, jsword ov, jsword nv)
|
||||
static JS_INLINE int
|
||||
js_CompareAndSwap(jsword *w, jsword ov, jsword nv)
|
||||
{
|
||||
// Details on these functions available in the manpage for atomic
|
||||
/* Details on these functions available in the manpage for atomic */
|
||||
#if JS_BYTES_PER_WORD == 8 && JS_BYTES_PER_LONG != 8
|
||||
return OSAtomicCompareAndSwap64Barrier(ov, nv, (int64_t*) w);
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user