Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Fix Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
adamsaka committed Jan 5, 2015
1 parent cf015be commit e030035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/atomic.d
Expand Up @@ -691,7 +691,7 @@ else version( AsmX86_64 )
}

bool cas(T,V1,V2)( shared(T)* here, const shared(V1)* ifThis, shared(V2)* writeThis ) nothrow
if( is(T U : U*) && __traits( compliles, { *here = writeThis; } ) )
if( is(T U : U*) && __traits( compiles, { *here = writeThis; } ) )
{
return casImpl(here, ifThis, writeThis);
}
Expand Down

0 comments on commit e030035

Please sign in to comment.