From 23d1871a89cf6dcf7870c2b27ac1e5f9a2bd9ba1 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)); }