libdevdctl: update deprecated deprecation warning comment

The comment indicated -Wno-deprecated-declarations was used to avoid
warnings about deprecated auto_ptr and various deprecated function
objects from <functional>.  libdevdctl (now) does not use auto_ptr,
so don't mention it in the comment.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2022-11-29 14:44:15 -05:00
parent 929c6216b1
commit 52f2b03877

View File

@ -18,8 +18,8 @@ WARNS?= 3
PRIVATELIB= true
SHLIB_MAJOR= 0
# Silence warnings about usage of deprecated std::auto_ptr, and various
# deprecated function objects from <functional>
# Silence warnings about usage of various deprecated function objects
# from <functional>
CXXWARNFLAGS+= -Wno-deprecated-declarations
.include <bsd.lib.mk>