pgraph: Fix a compiler warning in renderEffects.I

Initialization is unnecessary, but harmless
This commit is contained in:
rdb 2022-12-04 16:58:49 +01:00
parent 0866d485b1
commit 8ca804086f

View File

@ -26,7 +26,7 @@ Effect(const RenderEffect *effect) :
* file. At this point, the effect pointer is unknown. * file. At this point, the effect pointer is unknown.
*/ */
INLINE RenderEffects::Effect:: INLINE RenderEffects::Effect::
Effect() { Effect() : _type(TypeHandle::none()) {
} }
/** /**