You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by ta...@apache.org on 2016/10/05 20:10:35 UTC

[2/6] incubator-impala git commit: IMPALA-4234: Remove astyle config file, looks outdated.

IMPALA-4234: Remove astyle config file, looks outdated.

Change-Id: Ibdeba67fcfa538a49d335d42cfdc799753fe7e48
Reviewed-on: http://gerrit.cloudera.org:8080/4578
Reviewed-by: Alex Behm <al...@cloudera.com>
Tested-by: Internal Jenkins


Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/886e26d5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/886e26d5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/886e26d5

Branch: refs/heads/master
Commit: 886e26d58fd0b7ac3d3ffb277b330cc061835c29
Parents: 64c3948
Author: Lars Volker <lv...@cloudera.com>
Authored: Fri Sep 30 23:48:12 2016 +0200
Committer: Internal Jenkins <cl...@gerrit.cloudera.org>
Committed: Tue Oct 4 01:19:01 2016 +0000

----------------------------------------------------------------------
 be/.astylerc | 95 -------------------------------------------------------
 1 file changed, 95 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/886e26d5/be/.astylerc
----------------------------------------------------------------------
diff --git a/be/.astylerc b/be/.astylerc
deleted file mode 100644
index 1692559..0000000
--- a/be/.astylerc
+++ /dev/null
@@ -1,95 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-# Reference: http://astyle.sourceforge.net/astyle.html
-
-# Indent using 2 spaces
---indent=spaces=2
-
-# Indent using attached brackets, e.g.
-#  int Foo(bool isBar) {
-#      if (isBar) {
-#          bar();
-#          return 1;
-#      } else
-#          return 0;
-#  }
-#
---brackets=attach
-
-# Indent 'switch' blocks so that the 'case X:' statements are indented in
-# the switch block. The entire case block is indented:
-#
-# switch (foo)
-# {
-# case 1:
-#     a += 1;
-#     break;
-#
-# case 2:
-# {
-#     a += 2;
-#     break;
-# }
-# }
-#
-#becomes:
-#
-# switch (foo)
-# {
-#     case 1:
-#         a += 1;
-#         break;
-#
-#     case 2:
-#     {
-#         a += 2;
-#         break;
-#     }
-# }
---indent-switches
-
-# Insert space padding around operators. Any end of line comments will
-# remain in the original column, if possible. Note that there is no option
-# to unpad. Once padded, they stay padded.
-#
-# if (foo==2)
-#     a=bar((b-c)*a,d--);
-#
-#becomes:
-#
-# if (foo == 2)
-#      a = bar((b - c) * a, d--);
---pad-oper
-
-# Attach a pointer or reference operator (* or &) to the variable type (left):
-#
-# char *foo1;
-# char &foo2;
-#
-# becomes (with align-pointer=type):
-#
-# char* foo1;
-# char& foo2;
---align-pointer=type
-
-# Don't break one-line blocks.
-#
-# if (isFoo)
-# { isFoo = false; cout << isFoo << endl; }
-# remains unchanged.
---keep-one-line-blocks