Commit a1ceb761 by Alan Mishchenko

Making changes suggested by Mark Jarvin.

parent eacfad76
CC := gcc
CXX := g++
LD := g++
CP := cp
PROG := abc
......@@ -40,7 +39,7 @@ OPTFLAGS := -g -O #-DABC_NAMESPACE=xxx
CFLAGS += -Wall -Wno-unused-function $(OPTFLAGS) $(ARCHFLAGS) -I$(PWD)/src
#ifeq ($(shell $(CC) -dumpversion | awk '{FS="."; print ($$1>=4 && $$2>=6)}'),1)
# Set -Wno-unused-bug-set-variable for GCC 4.6.0 and greater only
# Set -Wno-unused-but-set-variable for GCC 4.6.0 and greater only
CFLAGS += -Wno-unused-but-set-variable
#endif
......
......@@ -1558,7 +1558,7 @@ ddSymmGroupMoveBackward(
int x,
int y)
{
int size;
int size = -1;
int i,j;
int xtop,xbot,xsize,ytop,ybot,ysize,newxtop;
......
......@@ -1590,7 +1590,7 @@ zdd_group_move_backward(
int x,
int y)
{
int size;
int size = -1;
int i, temp, gxtop, gxbot, gybot, yprev;
#ifdef DD_DEBUG
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment