From c01e4b7246b09790e59a3959cb7aadab3606c520 Mon Sep 17 00:00:00 2001 From: "Zdunowski, Piotr" Date: Tue, 30 Jun 2020 14:12:51 +0200 Subject: [PATCH] Remove return from void method. Change-Id: Ib9a2fe7942984aa72a241eeaf10cbbe0b83ca903 Signed-off-by: Zdunowski, Piotr --- .../gmm_helper/client_context/gmm_client_context_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/source/gmm_helper/client_context/gmm_client_context_base.cpp b/shared/source/gmm_helper/client_context/gmm_client_context_base.cpp index c4c1b9ee6e..1c4fe6b6e6 100644 --- a/shared/source/gmm_helper/client_context/gmm_client_context_base.cpp +++ b/shared/source/gmm_helper/client_context/gmm_client_context_base.cpp @@ -60,7 +60,7 @@ GMM_RESOURCE_INFO *GmmClientContextBase::copyResInfoObject(GMM_RESOURCE_INFO *pS } void GmmClientContextBase::destroyResInfoObject(GMM_RESOURCE_INFO *pResInfo) { - return clientContext->DestroyResInfoObject(pResInfo); + clientContext->DestroyResInfoObject(pResInfo); } GMM_CLIENT_CONTEXT *GmmClientContextBase::getHandle() const {