Fix clang-tidy issues in nbd proxy

All changes done by the robot, and are trivial.

Tested: Code passes clang-tidy.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I04a19bcc5ec74eddf9f3490adbdf70ac5a8bc68f
diff --git a/include/nbd_proxy.hpp b/include/nbd_proxy.hpp
index 60ac98c..afb6493 100644
--- a/include/nbd_proxy.hpp
+++ b/include/nbd_proxy.hpp
@@ -47,6 +47,11 @@
         connection(connIn)
     {}
 
+    NbdProxyServer(const NbdProxyServer&) = delete;
+    NbdProxyServer(NbdProxyServer&&) = delete;
+    NbdProxyServer& operator=(const NbdProxyServer&) = delete;
+    NbdProxyServer& operator=(NbdProxyServer&&) = delete;
+
     ~NbdProxyServer()
     {
         BMCWEB_LOG_DEBUG << "NbdProxyServer destructor";
@@ -349,7 +354,8 @@
                             }
                         }
 
-                        if (endpointValue && socketValue &&
+                        if ((endpointValue != nullptr) &&
+                            (socketValue != nullptr) &&
                             *endpointValue == conn.req.target())
                         {
                             endpointObjectPath = &objectPath.str;