Skip to content

Commit

Permalink
Merge pull request #167 from itrofimow/libcxx_string_view_fix
Browse files Browse the repository at this point in the history
replace explicit string_view initialization from {nullptr, 0} with default ctor
  • Loading branch information
Enmk authored Apr 13, 2022
2 parents 898ac2a + effe74b commit 91c4704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clickhouse/columns/itemview.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct ItemView {
}

explicit ItemView()
: ItemView(Type::Void, {nullptr, 0})
: ItemView(Type::Void, {})
{}

template <typename T>
Expand Down

0 comments on commit 91c4704

Please sign in to comment.