line up some columns, no functionality change.

llvm-svn: 59436
This commit is contained in:
Chris Lattner 2008-11-17 04:03:07 +00:00
parent dcbcbb827d
commit bcca40b264
1 changed files with 4 additions and 4 deletions

View File

@ -56,10 +56,10 @@
OVERLOADED_OPERATOR(Name,Spelling,unknown,Unary,Binary,MemberOnly)
#endif
OVERLOADED_OPERATOR_MULTI(New , "new" , true , true , false)
OVERLOADED_OPERATOR_MULTI(Delete , "delete" , true , true , false)
OVERLOADED_OPERATOR_MULTI(Array_New , "new[]" , true , true , false)
OVERLOADED_OPERATOR_MULTI(Array_Delete , "delete[]" , true , true , false)
OVERLOADED_OPERATOR_MULTI(New , "new" , true , true , false)
OVERLOADED_OPERATOR_MULTI(Delete , "delete" , true , true , false)
OVERLOADED_OPERATOR_MULTI(Array_New , "new[]" , true , true , false)
OVERLOADED_OPERATOR_MULTI(Array_Delete , "delete[]" , true , true , false)
OVERLOADED_OPERATOR(Plus , "+" , plus , true , true , false)
OVERLOADED_OPERATOR(Minus , "-" , minus , true , true , false)
OVERLOADED_OPERATOR(Star , "*" , star , true , true , false)