Author: jkim
Date: Wed Oct  5 15:50:05 2011
New Revision: 226036
URL: http://svn.freebsd.org/changeset/base/226036

Log:
  MFC:  r226035
  
  Avoid accidental conflicts with C++ operator keywords.
  
  Approved by:  re (kib)

Modified:
  stable/9/include/iso646.h
Directory Properties:
  stable/9/include/   (props changed)

Modified: stable/9/include/iso646.h
==============================================================================
--- stable/9/include/iso646.h   Wed Oct  5 09:56:43 2011        (r226035)
+++ stable/9/include/iso646.h   Wed Oct  5 15:50:05 2011        (r226036)
@@ -29,6 +29,8 @@
 #ifndef _ISO646_H_
 #define        _ISO646_H_
 
+#ifndef __cplusplus
+
 #define        and     &&
 #define        and_eq  &=
 #define        bitand  &
@@ -41,4 +43,6 @@
 #define        xor     ^
 #define        xor_eq  ^=
 
+#endif /* !__cplusplus */
+
 #endif /* !_ISO646_H_ */
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to