Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(418)

Unified Diff: fusl/src/complex/cpow.c

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/src/complex/cpow.c
diff --git a/fusl/src/complex/cpow.c b/fusl/src/complex/cpow.c
index f863588fe7881dc9eeda32c620d2cc3cad889757..e107e8a1436c501b85e9497238a459426be976b0 100644
--- a/fusl/src/complex/cpow.c
+++ b/fusl/src/complex/cpow.c
@@ -2,7 +2,6 @@
/* pow(z, c) = exp(c log(z)), See C99 G.6.4.1 */
-double complex cpow(double complex z, double complex c)
-{
- return cexp(c * clog(z));
+double complex cpow(double complex z, double complex c) {
+ return cexp(c * clog(z));
}

Powered by Google App Engine
This is Rietveld 408576698