Skip to content

Commit 01b158d

Browse files
committed
Fix unused parameter error in examples/table.cpp.
1 parent edfe1b7 commit 01b158d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/table.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ std::ostream& operator<<(std::ostream& stream,
121121

122122
template <typename T, std::uint64_t Id>
123123
std::ostream& operator<<(std::ostream& stream,
124-
const Entry<T, Id, DeletedEntry>& entry) {
124+
const Entry<T, Id, DeletedEntry>& /*entry*/) {
125125
stream << "<deleted>";
126126
return stream;
127127
}

0 commit comments

Comments
 (0)