From e31b2bcde3cd1efa41e496df4b304a9153e1bb36 Mon Sep 17 00:00:00 2001 From: Apoorva Joshi Date: Wed, 19 Jul 2023 17:05:33 +0200 Subject: [PATCH] Revert unused change in header file --- source/MaterialXRender/Image.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/source/MaterialXRender/Image.h b/source/MaterialXRender/Image.h index 0274115638..e5857d2af8 100644 --- a/source/MaterialXRender/Image.h +++ b/source/MaterialXRender/Image.h @@ -55,12 +55,7 @@ class MX_RENDER_API Image public: /// Create an empty image with the given properties. - static ImagePtr create( - unsigned int width, - unsigned int height, - unsigned int channelCount, - BaseType baseType = BaseType::UINT8 - ) + static ImagePtr create(unsigned int width, unsigned int height, unsigned int channelCount, BaseType baseType = BaseType::UINT8) { return ImagePtr(new Image(width, height, channelCount, baseType)); }