diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/d/40080-static_if.d')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/d/40080-static_if.d | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/d/40080-static_if.d b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/d/40080-static_if.d deleted file mode 100644 index 0eb3a1a8..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/d/40080-static_if.d +++ /dev/null @@ -1,11 +0,0 @@ -ClLinearExpression opBinary(string op) (double constant) -{ - static if (op == "+") - return new ClLinearExpression(this, 1, constant); - else static if (op == "-") - return new ClLinearExpression(this, 1, -constant); - else static if (op == "*") - return new ClLinearExpression(this, constant, 0); - else static if (op == "/") - return new ClLinearExpression(this, 1.0 / constant, 0); -} |