Skip to content

Commit

Permalink
Merge branch 'master' into linprob_table
Browse files Browse the repository at this point in the history
Conflicts:
	YASI_12/ds.hashtablebase.h

Signed-off-by: saad0105050 <saad0105050@gmail.com>
  • Loading branch information
saad0105050 committed Sep 16, 2014
2 parents 5a4c945 + 321f30c commit 8d58f38
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions YASI_12/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ namespace yasi{
#define MAKE_UNIQUE2(x,y) MAKE_UNIQUE( CONCAT(x,y) )
#define MAKE_UNIQUE3(x,y, z) MAKE_UNIQUE2( CONCAT(x,y), z )

#define FREE_SAFE(x) {if( (x) != 0 ) free(x); (x) = 0; }
#define DELETE_SAFE(x) {if( (x) != 0 ) delete (x); (x) = 0; }
#define FREE_SAFE(x) {if( (x) != 0 ) free(x); (x) = 0; }
#define DELETE_ARR_SAFE(x) {if( (x) != 0 ) delete[] (x); (x) = 0; }
Expand Down

0 comments on commit 8d58f38

Please sign in to comment.