Skip to content

Commit 4237585

Browse files
Removed explicit constructors from CInputVector
1 parent 9c43dd5 commit 4237585

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/buildbindingccpp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ func writeCPPInputVector(w LanguageWriter, NameSpace string, ClassIdentifier str
965965
w.Writeln(" ")
966966
w.Writeln("public:")
967967
w.Writeln(" ")
968-
w.Writeln(" explicit C%sInputVector( const std::vector<T>& vec)", ClassIdentifier)
968+
w.Writeln(" C%sInputVector( const std::vector<T>& vec)", ClassIdentifier)
969969
w.Writeln(" : m_data( vec.data() ), m_size( vec.size() )")
970970
w.Writeln(" {")
971971
w.Writeln(" }")

0 commit comments

Comments
 (0)