]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
vala: Fix code indentation
authorRico Tzschichholz <ricotz@ubuntu.com>
Fri, 17 Jul 2020 10:35:03 +0000 (12:35 +0200)
committerRico Tzschichholz <ricotz@ubuntu.com>
Fri, 17 Jul 2020 10:39:21 +0000 (12:39 +0200)
vala/valabinaryexpression.vala

index bfcaba2abb2fc2b5fe02528b5f96cc7e7b35ee95..19808879fb7228c1acfc36b927e7d42577c7869a 100644 (file)
@@ -454,8 +454,8 @@ public class Vala.BinaryExpression : Expression {
                        if (left.value_type.compatible (context.analyzer.string_type)
                            && right.value_type.compatible (context.analyzer.string_type)) {
                                // string comparison
-                               } else if (left.value_type is PointerType && right.value_type is PointerType) {
-                                       // pointer arithmetic
+                       } else if (left.value_type is PointerType && right.value_type is PointerType) {
+                               // pointer arithmetic
                        } else {
                                DataType resulting_type;