Skip to content

Commit 91c4704

Browse files
authored
Merge pull request ClickHouse#167 from itrofimow/libcxx_string_view_fix
replace explicit string_view initialization from {nullptr, 0} with default ctor
2 parents 898ac2a + effe74b commit 91c4704

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clickhouse/columns/itemview.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ struct ItemView {
4444
}
4545

4646
explicit ItemView()
47-
: ItemView(Type::Void, {nullptr, 0})
47+
: ItemView(Type::Void, {})
4848
{}
4949

5050
template <typename T>

0 commit comments

Comments
 (0)