Skip to content

Commit

Permalink
Merge pull request #48 from calebyhan/master
Browse files Browse the repository at this point in the history
sde_lib: fixed make bug
  • Loading branch information
gcongiu authored Sep 18, 2023
2 parents 2c816bd + 3ce0f06 commit ee97a32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sde_lib/sde_lib.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -187,12 +187,12 @@ namespace papi_sde
return X;
}
// Prefix increment ++x;
PapiSde::CreatedCounter &operator++(PapiSde::CreatedCounter &X){
inline PapiSde::CreatedCounter &operator++(PapiSde::CreatedCounter &X){
X.increment(1LL);
return X;
}
// Prefix decrement --x;
PapiSde::CreatedCounter &operator--(PapiSde::CreatedCounter &X){
inline PapiSde::CreatedCounter &operator--(PapiSde::CreatedCounter &X){
X.increment(-1LL);
return X;
}
Expand Down

0 comments on commit ee97a32

Please sign in to comment.