diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-12-29 15:06:30 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-12-29 15:06:30 +0000 |
commit | 3f59c71ed8ef6c66f3e3c31162f536861a190a1c (patch) | |
tree | bfbe78c694bab9b048ca6b9e99425284ad8188e6 /include/tgmath.h | |
parent | 90ca90c53d4364ebefeb54a99deb4c7890d84488 (diff) |
- whitespace cleanup; no obj-code changes
Diffstat (limited to 'include/tgmath.h')
-rw-r--r-- | include/tgmath.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/tgmath.h b/include/tgmath.h index b3a546d17..2897697b6 100644 --- a/include/tgmath.h +++ b/include/tgmath.h @@ -70,7 +70,7 @@ __tgmres = Fct (Val); \ else if (sizeof (Val) == sizeof (float)) \ __tgmres = Fct##f (Val); \ - else \ + else \ __tgmres = __tgml(Fct) (Val); \ __tgmres; })) @@ -81,7 +81,7 @@ __tgmres = Fct (Val1, Val2); \ else if (sizeof (Val1) == sizeof (float)) \ __tgmres = Fct##f (Val1, Val2); \ - else \ + else \ __tgmres = __tgml(Fct) (Val1, Val2); \ __tgmres; })) @@ -155,7 +155,7 @@ else \ __tgmres = Cfct (Val); \ } \ - else \ + else \ { \ if (sizeof (__real__ (Val)) == sizeof (Val)) \ __tgmres = Fct##f (Val); \ @@ -173,7 +173,7 @@ __tgmres = Fct (Val); \ else if (sizeof (Val) == sizeof (__complex__ float)) \ __tgmres = Fct##f (Val); \ - else \ + else \ __tgmres = __tgml(Fct) (Val); \ __tgmres; })) |