Skip to content

Commit 81a8b94

Browse files
committed
chore: Avoid uninitialized warning
1 parent d949a15 commit 81a8b94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using namespace duckdb;
1111

12-
RType::RType() : id_(RTypeId::UNKNOWN) {
12+
RType::RType() : id_(RTypeId::UNKNOWN), size_(0) {
1313
}
1414

1515
RType::RType(RTypeId id) : id_(id), size_(0) {

0 commit comments

Comments
 (0)