]> www.ginac.de Git - ginac.git/commitdiff
gcd_pf_pow_pow: deobfuscate a little bit (no functional changes).
authorAlexei Sheplyakov <varg@theor.jinr.ru>
Mon, 25 Aug 2008 12:57:38 +0000 (16:57 +0400)
committerJens Vollinga <jensv@nikhef.nl>
Wed, 27 Aug 2008 14:22:59 +0000 (16:22 +0200)
Use

if (foo)
return bar();
return baz();

instead of

if (foo) {
return bar();
} else {
return baz();
}

This makes the code a little bit more readable.


No differences found