Skip to content

Commit

Permalink
change 'this' to 'self' to avoid conflict with c++ style.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheng Di committed Jun 4, 2018
1 parent 32a0508 commit da867b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sz/include/TightDataPointStorageD.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void new_TightDataPointStorageD(TightDataPointStorageD **self,
double realPrecision, double medianValue, char reqLength, unsigned int intervals,
unsigned char* pwrErrBoundBytes, size_t pwrErrBoundBytes_size, unsigned char radExpo);

void new_TightDataPointStorageD2(TightDataPointStorageD **this,
void new_TightDataPointStorageD2(TightDataPointStorageD **self,
size_t dataSeriesLength, size_t exactDataNum,
int* type, unsigned char* exactMidBytes, size_t exactMidBytes_size,
unsigned char* leadNumIntArray, //leadNumIntArray contains readable numbers....
Expand Down
2 changes: 1 addition & 1 deletion sz/include/TightDataPointStorageF.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void new_TightDataPointStorageF(TightDataPointStorageF **self,
* This function is designed for first-version of the point-wise relative error bound (developed by Sheng Di for TPDS18 paper)
*
* */
void new_TightDataPointStorageF2(TightDataPointStorageF **this,
void new_TightDataPointStorageF2(TightDataPointStorageF **self,
size_t dataSeriesLength, size_t exactDataNum,
int* type, unsigned char* exactMidBytes, size_t exactMidBytes_size,
unsigned char* leadNumIntArray, //leadNumIntArray contains readable numbers....
Expand Down

0 comments on commit da867b0

Please sign in to comment.