[vala] Fix operator string for inequality expression
- From: Jürg Billeter <juergbi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala] Fix operator string for inequality expression
- Date: Sun, 27 Jun 2010 14:29:12 +0000 (UTC)
commit 6e8cd5fd8793cfb687e929129e0e32d2f2f15441
Author: Jürg Billeter <j bitron ch>
Date: Sun Jun 27 13:37:28 2010 +0200
Fix operator string for inequality expression
vala/valabinaryexpression.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/vala/valabinaryexpression.vala b/vala/valabinaryexpression.vala
index 6e4bbac..8e813e2 100644
--- a/vala/valabinaryexpression.vala
+++ b/vala/valabinaryexpression.vala
@@ -113,7 +113,7 @@ public class Vala.BinaryExpression : Expression {
case BinaryOperator.LESS_THAN_OR_EQUAL: return "<=";
case BinaryOperator.GREATER_THAN_OR_EQUAL: return ">=";
case BinaryOperator.EQUALITY: return "==";
- case BinaryOperator.INEQUALITY: return "!+";
+ case BinaryOperator.INEQUALITY: return "!=";
case BinaryOperator.BITWISE_AND: return "&";
case BinaryOperator.BITWISE_OR: return "|";
case BinaryOperator.BITWISE_XOR: return "^";
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]