Enable clang code format

Change-Id: Ib640ef7cea99ff505965182ec9900a2d53a8986e
Signed-off-by: Jayanth Othayoth <ojayanth@in.ibm.com>
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/dump_entry.cpp b/dump_entry.cpp
index d7878c9..6048b1c 100644
--- a/dump_entry.cpp
+++ b/dump_entry.cpp
@@ -1,8 +1,9 @@
-#include <phosphor-logging/log.hpp>
-
 #include "dump_entry.hpp"
+
 #include "dump_manager.hpp"
 
+#include <phosphor-logging/log.hpp>
+
 namespace phosphor
 {
 namespace dump
@@ -12,14 +13,14 @@
 
 void Entry::delete_()
 {
-    //Delete Dump file from Permanent location
+    // Delete Dump file from Permanent location
     try
     {
         fs::remove_all(file.parent_path());
     }
     catch (fs::filesystem_error& e)
     {
-        //Log Error message and continue
+        // Log Error message and continue
         log<level::ERR>(e.what());
     }
 
@@ -28,4 +29,4 @@
 }
 
 } // namespace dump
-} // namepsace phosphor
+} // namespace phosphor