Fix style in the preprocessor.

Again using git cl format.

BUG=angleproject:650

Change-Id: I8898d00bfc6a50db50bffd2cc30c3eda7c08c6c2
Reviewed-on: https://chromium-review.googlesource.com/419097
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Commit-Queue: Jamie Madill <jmadill@chromium.org>
diff --git a/src/compiler/preprocessor/Macro.cpp b/src/compiler/preprocessor/Macro.cpp
index f5c9439..e7f2bae 100644
--- a/src/compiler/preprocessor/Macro.cpp
+++ b/src/compiler/preprocessor/Macro.cpp
@@ -14,9 +14,7 @@
 
 bool Macro::equals(const Macro &other) const
 {
-    return (type == other.type) &&
-           (name == other.name) &&
-           (parameters == other.parameters) &&
+    return (type == other.type) && (name == other.name) && (parameters == other.parameters) &&
            (replacements == other.replacements);
 }
 
@@ -29,11 +27,10 @@
     Macro macro;
     macro.predefined = true;
     macro.type       = Macro::kTypeObj;
-    macro.name = name;
+    macro.name       = name;
     macro.replacements.push_back(token);
 
     (*macroSet)[name] = macro;
 }
 
 }  // namespace pp
-