mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-20 10:15:10 -04:00
Ticket #7: Silence compiler warnings for unused variables
This commit is contained in:
parent
c120ca49dd
commit
4c9570176b
1 changed files with 5 additions and 3 deletions
|
@ -765,14 +765,16 @@ int evaluate(unsigned char *grid, int size, int pattern)
|
|||
{
|
||||
int x, y, block;
|
||||
int result = 0;
|
||||
int result_b = 0;
|
||||
char state;
|
||||
int p;
|
||||
int dark_mods;
|
||||
int percentage, k, k2;
|
||||
char str[15];
|
||||
int m;
|
||||
int m;
|
||||
int smallest;
|
||||
#ifdef ZINTLOG
|
||||
int result_b = 0;
|
||||
char str[15];
|
||||
#endif
|
||||
|
||||
#ifndef _MSC_VER
|
||||
char local[size * size];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue