Remove inline operator

Clang-18 flags this as a redundant inline operator, which is correct.
Remove it.

Tested: Code compiles.

Change-Id: I89d808f05cfc123b7884d1e0652cdd3912e2a674
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/include/vm_websocket.hpp b/include/vm_websocket.hpp
index 284b5d2..2180329 100644
--- a/include/vm_websocket.hpp
+++ b/include/vm_websocket.hpp
@@ -304,8 +304,8 @@
         }
     }
 
-    inline void afterRead(const std::weak_ptr<NbdProxyServer>& weak,
-                          const boost::system::error_code& ec, size_t bytesRead)
+    void afterRead(const std::weak_ptr<NbdProxyServer>& weak,
+                   const boost::system::error_code& ec, size_t bytesRead)
     {
         if (ec)
         {