]> 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>
Sun, 26 Jul 2020 08:49:00 +0000 (10:49 +0200)
vala/valabinaryexpression.vala

index b85f6ffcebc7e866cb9191f5e2f3b134b0496701..579256ec035778096b652e78c9122727ed35e16f 100644 (file)
@@ -415,8 +415,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;