Enable pointer devolution checks

Enable cpp core guidelines checks for pointer deevolution.  For the
moment, simply ignore the uses, although ideally these should be cleaned
up at some point.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I9a8aae94cc7a59529eab89225a37e89628c17597
diff --git a/http/logging.hpp b/http/logging.hpp
index ca6bdc6..5f268f4 100644
--- a/http/logging.hpp
+++ b/http/logging.hpp
@@ -74,6 +74,10 @@
         if (level >= getCurrentLogLevel())
         {
 #ifdef BMCWEB_ENABLE_LOGGING
+            // Somewhere in the code we're implicitly casting an array to a
+            // pointer in logging code.  It's non-trivial to find, so disable
+            // the check here for now
+            // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-array-to-pointer-decay)
             stringstream << value;
 #endif
         }