Pulled the start and end variables used for time measurements in the profiling block to avoid warnings during compilation without profiling.
This commit is contained in:
parent
ed91f1d15c
commit
41ec39574f
1 changed files with 4 additions and 4 deletions
|
@ -3855,9 +3855,9 @@ bwc_compress(bwc_field *const field, bwc_data *const data)
|
|||
/*-----------------------*\
|
||||
! DEFINE FLOAT VARIABLES: !
|
||||
\*-----------------------*/
|
||||
double start, end;
|
||||
|
||||
#ifdef BWC_PROFILE
|
||||
double start, end;
|
||||
|
||||
double bpd = 0;
|
||||
double cpr = 0;
|
||||
|
||||
|
@ -4280,9 +4280,9 @@ bwc_decompress(bwc_field *const field, bwc_data *const data)
|
|||
/*-----------------------*\
|
||||
! DEFINE FLOAT VARIABLES: !
|
||||
\*-----------------------*/
|
||||
double start, end;
|
||||
|
||||
#ifdef BWC_PROFILE
|
||||
double start, end;
|
||||
|
||||
double ttl;
|
||||
|
||||
double cpy;
|
||||
|
|
Loading…
Reference in a new issue