]> www.ginac.de Git - ginac.git/commit
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)
commita79a813e7249f793859d1d3b443d1931dbab94b6
treebf5d20e58d120f2f4441388ddce3988c25fdb628
parent6ff92476a4dcd32f9a0c6f59c95c74812ea86fef
gcd_pf_pow_pow: deobfuscate a little bit (no functional changes).

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.
ginac/normal.cpp