Automatically add spaces to binary operators (>=)

command:

sed -E "s/([[:alnum:]]) >= ([[:alnum:]])/\1 >= \2/g" -i **/*.d
sed -E "s/([[:alnum:]])>= ([[:alnum:]])/\1 >= \2/g" -i **/*.d
sed -E "s/([[:alnum:]]) >=([[:alnum:]])/\1 >= \2/g" -i **/*.d
This commit is contained in:
Sebastian Wilzbach 2017-02-23 00:54:17 +01:00
parent 203755d296
commit a1bb0515fc
8 changed files with 22 additions and 22 deletions

View file

@ -365,7 +365,7 @@ assert(isIdentical(normalDistributionImpl(NaN(0x325)), NaN(0x325)));
*/
real normalDistributionInvImpl(real p)
in {
assert(p>=0.0L && p <= 1.0L, "Domain error");
assert(p >= 0.0L && p <= 1.0L, "Domain error");
}
body
{
@ -419,7 +419,7 @@ static immutable real[8] Q3 =
0x1.e05268dd3c07989ep-3, 0x1.239c6aff14afbf82p+1, 1.0
];
if (p <= 0.0L || p>=1.0L)
if (p <= 0.0L || p >= 1.0L)
{
if (p == 0.0L)
return -real.infinity;