From owner-cvs-all Mon Feb 4 22:21:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A81F237B422; Mon, 4 Feb 2002 22:21:34 -0800 (PST) Received: (from bbraun@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g156LYr30879; Mon, 4 Feb 2002 22:21:34 -0800 (PST) (envelope-from bbraun) Message-Id: <200202050621.g156LYr30879@freefall.freebsd.org> From: Rob Braun Date: Mon, 4 Feb 2002 22:21:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include ctype.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bbraun 2002/02/04 22:21:34 PST Modified files: include ctype.h Log: Makes __istype() an inline (and a non inlined) function to avoid C++ compile issues. std::isspace(' ') was expanding to std::(!!_maskrune...) which would cause a C++ compile error. Making __istype() an inline causes the expansion to be std::__istype() instead, which is valid. Reviewed by: jkh Revision Changes Path 1.17 +8 -3 src/include/ctype.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message