Example #1
0
File: base.hpp Project: 7ev3n/hpx
 integral_type operator--(void) volatile {return fetch_sub(1)-1;}
Example #2
0
File: base.hpp Project: 7ev3n/hpx
 integral_type operator--(int) volatile {return fetch_sub(1);}
Example #3
0
File: base.hpp Project: 7ev3n/hpx
 integral_type operator-=(integral_type c) volatile {return fetch_sub(c)-c;}