Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Feb 2002 22:21:34 -0800 (PST)
From:      Rob Braun <bbraun@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/include ctype.h
Message-ID:  <200202050621.g156LYr30879@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200202050621.g156LYr30879>