aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-25 15:53:27 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-25 15:53:27 -0700
commit884ac59256d19db5ee25d976a4f5e60cce51d7d5 (patch)
treec1394ecd892a20acad13b5b742e1a655dd5f2db3 /Makefile
parentcc48812cb55e046a77ce1b4aad33566acc5fbd47 (diff)
Re-enable the warning for unused parameters.
It's easy enough to squelch the warning with an __attribute__ ((unused)) and it might just catch something for us in the future.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3a8cda90..6e3ab26d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
PROGS=notmuch
-CXXWARNINGS_FLAGS=-Wall -Wextra -Wno-unused-parameter
+CXXWARNINGS_FLAGS=-Wall -Wextra
CWARNINGS_FLAGS=$(CXXWARNINGS_FLAGS)
CDEPENDS_FLAGS=`pkg-config --cflags glib-2.0 talloc`