From 415925b024ba28ae6f6cc8d066ee7ea139df0cd8 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 22 Aug 2019 14:49:43 +0100 Subject: [PATCH] Removed exlict keyword to address build problems with VS older than 2015. --- src/osgPlugins/tga/ReaderWriterTGA.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/tga/ReaderWriterTGA.cpp b/src/osgPlugins/tga/ReaderWriterTGA.cpp index f78aad3a3..697ab3e7c 100644 --- a/src/osgPlugins/tga/ReaderWriterTGA.cpp +++ b/src/osgPlugins/tga/ReaderWriterTGA.cpp @@ -325,7 +325,7 @@ struct SafeArray operator T*() { return impl; } template - explicit operator U() { return (U)impl; } + operator U() { return (U)impl; } private: T* impl;