示例#1
0
文件: base.hpp 项目: 7ev3n/hpx
 integral_type operator--(void) volatile {return fetch_sub(1)-1;}
示例#2
0
文件: base.hpp 项目: 7ev3n/hpx
 integral_type operator--(int) volatile {return fetch_sub(1);}
示例#3
0
文件: base.hpp 项目: 7ev3n/hpx
 integral_type operator-=(integral_type c) volatile {return fetch_sub(c)-c;}