buf_ref.into() can be const now

pull/765/head
Aaron Miller 1 year ago committed by AT
parent bbcee1ced5
commit d59c77ac55

@ -88,7 +88,7 @@ struct buf_ref {
uint32_t offset : 20;
uint32_t length : 12;
std::string_view into(const char* buf) {
std::string_view into(const char* buf) const {
return std::string_view(&buf[offset], length);
}
};

Loading…
Cancel
Save