diff options
author | Chris Lattner <sabre@nondot.org> | 2008-11-17 04:03:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-11-17 04:03:07 +0000 |
commit | ee79ca9d8fafd05a318c6265c8896dfc342cc754 (patch) | |
tree | 5f43fc6b2bee0c6cc30eb9202089568483db7018 | |
parent | 7b30b1c866deb37fabe2b25684b7d238258d46ad (diff) |
line up some columns, no functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59436 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/OperatorKinds.def | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Basic/OperatorKinds.def b/include/clang/Basic/OperatorKinds.def index 6881e4f876..0836faf0f3 100644 --- a/include/clang/Basic/OperatorKinds.def +++ b/include/clang/Basic/OperatorKinds.def @@ -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) |