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

Unified Diff: fusl/arch/powerpc/bits/endian.h

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/arch/powerpc/bits/endian.h
diff --git a/fusl/arch/powerpc/bits/endian.h b/fusl/arch/powerpc/bits/endian.h
index 4442abf4eb95f66e6f6770559a5ad98c711f92ce..7e89899e3adb56732c350b211c194bb43901ac12 100644
--- a/fusl/arch/powerpc/bits/endian.h
+++ b/fusl/arch/powerpc/bits/endian.h
@@ -1,15 +1,15 @@
#ifdef __BIG_ENDIAN__
- #if __BIG_ENDIAN__
- #define __BYTE_ORDER __BIG_ENDIAN
- #endif
+#if __BIG_ENDIAN__
+#define __BYTE_ORDER __BIG_ENDIAN
+#endif
#endif /* __BIG_ENDIAN__ */
#ifdef __LITTLE_ENDIAN__
- #if __LITTLE_ENDIAN__
- #define __BYTE_ORDER __LITTLE_ENDIAN
- #endif
+#if __LITTLE_ENDIAN__
+#define __BYTE_ORDER __LITTLE_ENDIAN
+#endif
#endif /* __LITTLE_ENDIAN__ */
#ifndef __BYTE_ORDER
- #define __BYTE_ORDER __BIG_ENDIAN
+#define __BYTE_ORDER __BIG_ENDIAN
#endif

Powered by Google App Engine
This is Rietveld 408576698