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/test/flyweight_test.cpp b/test/flyweight_test.cpp
index 5d018c6..472358d 100644
--- a/test/flyweight_test.cpp
+++ b/test/flyweight_test.cpp
@@ -9,9 +9,22 @@
   public:
     Foo() = default;
     explicit Foo(int i) : iv_i(i) {}
-    int get() const { return iv_i; }
-    bool operator==(const Foo& i_r) const { return iv_i == i_r.iv_i; }
-    bool operator<(const Foo& i_r) const { return iv_i <  i_r.iv_i; }
+
+    int get() const
+    {
+        return iv_i;
+    }
+
+    bool operator==(const Foo& i_r) const
+    {
+        return iv_i == i_r.iv_i;
+    }
+
+    bool operator<(const Foo& i_r) const
+    {
+        return iv_i <  i_r.iv_i;
+    }
+
   private:
     int iv_i = 0;
 };