svn commit: r226037 - stable/8/include
Jung-uk Kim
jkim at FreeBSD.org
Wed Oct 5 15:52:04 UTC 2011
Author: jkim
Date: Wed Oct 5 15:52:04 2011
New Revision: 226037
URL: http://svn.freebsd.org/changeset/base/226037
Log:
MFC: r225801
Avoid accidental conflicts with C++ operator keywords.
Modified:
stable/8/include/iso646.h
Directory Properties:
stable/8/include/ (props changed)
Modified: stable/8/include/iso646.h
==============================================================================
--- stable/8/include/iso646.h Wed Oct 5 15:50:05 2011 (r226036)
+++ stable/8/include/iso646.h Wed Oct 5 15:52:04 2011 (r226037)
@@ -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_ */
More information about the svn-src-stable
mailing list