Exemplo n.º 1
0
Arquivo: base.hpp Projeto: 7ev3n/hpx
 integral_type operator++(void) volatile {return fetch_add(1)+1;}
Exemplo n.º 2
0
Arquivo: base.hpp Projeto: 7ev3n/hpx
 integral_type operator++(int) volatile {return fetch_add(1);}
Exemplo n.º 3
0
Arquivo: base.hpp Projeto: 7ev3n/hpx
 integral_type operator+=(integral_type c) volatile {return fetch_add(c)+c;}