rm unused macro (CONCAT2)

This commit is contained in:
Daniel Micay 2012-06-07 16:43:35 -04:00
parent ca2f60b977
commit 00b1b26b59
2 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,7 @@ CFLAGS += -std=c99 -O3 \
-Wconversion \
-Wc++-compat \
-Wbad-function-cast \
-Wunused-macros \
$(shell pkg-config --cflags ${GTK} ${VTE})
LDFLAGS += -s -Wl,--as-needed $(shell pkg-config --libs ${GTK} ${VTE})

View File

@ -9,7 +9,6 @@
#include "config.h"
#define CONCAT(X, Y) X ## Y
#define CONCAT2(X, Y) CONCAT(X, Y)
#define KEY(X) CONCAT(GDK_KEY_, X)
#ifndef __GNUC__