From 4237585f405bbebfbaf143ade7033777d1491bda Mon Sep 17 00:00:00 2001 From: Alexander Oster Date: Thu, 17 Feb 2022 17:25:57 +0100 Subject: [PATCH] Removed explicit constructors from CInputVector --- Source/buildbindingccpp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/buildbindingccpp.go b/Source/buildbindingccpp.go index e2e2f4d3..4733ff8b 100644 --- a/Source/buildbindingccpp.go +++ b/Source/buildbindingccpp.go @@ -965,7 +965,7 @@ func writeCPPInputVector(w LanguageWriter, NameSpace string, ClassIdentifier str w.Writeln(" ") w.Writeln("public:") w.Writeln(" ") - w.Writeln(" explicit C%sInputVector( const std::vector& vec)", ClassIdentifier) + w.Writeln(" C%sInputVector( const std::vector& vec)", ClassIdentifier) w.Writeln(" : m_data( vec.data() ), m_size( vec.size() )") w.Writeln(" {") w.Writeln(" }")