# HG changeset patch # User Augie Fackler # Date 1575663205 18000 # Node ID d1587fadff065ba273fa91e86090269a7a03d7c5 # Parent 53f582bee3d1d769f7fb07ffe2917cc8394cff46 fuzz: suppress deprecated-register warnings in our compile These come from the Python.h headers still using the `register` keyword and our use of C++17. I think this will go away when we're using Python 3 for our fuzzing, but that can come later. Differential Revision: https://phab.mercurial-scm.org/D7562 diff -r 53f582bee3d1 -r d1587fadff06 contrib/fuzz/Makefile --- a/contrib/fuzz/Makefile Fri Dec 06 15:12:00 2019 -0500 +++ b/contrib/fuzz/Makefile Fri Dec 06 15:13:25 2019 -0500 @@ -3,6 +3,8 @@ LIB_FUZZING_ENGINE ?= -lFuzzingEngine +CXXFLAGS += -Wno-deprecated-register + all: bdiff mpatch xdiff pyutil.o: pyutil.cc pyutil.h