svn commit: r193182 - stable/7/share/misc

Ed Schouten ed at FreeBSD.org
Sun May 31 18:14:25 UTC 2009


Author: ed
Date: Sun May 31 18:14:24 2009
New Revision: 193182
URL: http://svn.freebsd.org/changeset/base/193182

Log:
  Correct the previous commit.
  
  Also merge the operator file in share/misc, that is also part of r190855.

Modified:
  stable/7/share/misc/   (props changed)
  stable/7/share/misc/iso639   (props changed)
  stable/7/share/misc/operator

Modified: stable/7/share/misc/operator
==============================================================================
--- stable/7/share/misc/operator	Sun May 31 18:06:46 2009	(r193181)
+++ stable/7/share/misc/operator	Sun May 31 18:14:24 2009	(r193182)
@@ -1,19 +1,21 @@
-Operator				Associativity
------------------------------------------------------
-() [] -> .				left to right
-! ~ ++ -- - (type) * & sizeof		right to left
-* / %					left to right
-+ -					left to right
-<< >>					left to right
-< <= > >=				left to right
-== !=					left to right
-&					left to right
-^					left to right
-|					left to right
-&&					left to right
-||					left to right
-?:					right to left
-= += -= *= /= %= <<= >>= &= ^= |=	right to left
-,					left to right
+Operator					Associativity
+-------------------------------------------------------------
+() [] -> .					left to right
+! ~ ++ -- - (type) * & sizeof new delete	right to left
+->* .*						left to right
+* / %						left to right
++ -						left to right
+<< >>						left to right
+< <= > >=					left to right
+== !=						left to right
+&						left to right
+^						left to right
+|						left to right
+&&						left to right
+||						left to right
+?:						right to left
+= += -= *= /= %= <<= >>= &= ^= |= throw		right to left
+?: (C++, third operand)				right to left
+,						left to right
 
 $FreeBSD$


More information about the svn-src-stable-7 mailing list