The Road to Clang-Format part 4

The Return of the Endline

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: I5c0e8a8639ae9433c9a5f5eed444c07763e5bc3f
diff --git a/src/hei_chip.hpp b/src/hei_chip.hpp
index 83ef663..2633eca 100644
--- a/src/hei_chip.hpp
+++ b/src/hei_chip.hpp
@@ -26,22 +26,25 @@
      * @param i_chip See description for iv_chip.
      * @param i_type See description for iv_type.
      */
-    Chip(void* i_chip, ChipType_t i_type) :
-        iv_chip(i_chip), iv_type(i_type)
-    {}
+    Chip(void* i_chip, ChipType_t i_type) : iv_chip(i_chip), iv_type(i_type) {}
 
   public: // Accessors
 
-    void* getChip() const { return iv_chip; }
+    void* getChip() const
+    {
+        return iv_chip;
+    }
 
-    ChipType_t getType() const { return iv_type; }
+    ChipType_t getType() const
+    {
+        return iv_type;
+    }
 
   public: // Operators
 
     bool operator==(const Chip& r) const
     {
-        return (iv_chip == r.iv_chip) &&
-               (iv_type == r.iv_type);
+        return (iv_chip == r.iv_chip) && (iv_type == r.iv_type);
     }
 
     bool operator<(const Chip& r) const