mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-02 00:14:14 +08:00
mdbx++: fix missing &
for std::ostream &operator<<()
.
This commit is contained in:
parent
30b3cc3407
commit
70dab667b9
6
mdbx.h++
6
mdbx.h++
@ -1252,14 +1252,14 @@ struct LIBMDBX_API to_base64 {
|
|||||||
bool is_erroneous() const noexcept { return false; }
|
bool is_erroneous() const noexcept { return false; }
|
||||||
};
|
};
|
||||||
|
|
||||||
inline ::std::ostream &operator<<(::std::ostream out, const to_hex &wrapper) {
|
inline ::std::ostream &operator<<(::std::ostream &out, const to_hex &wrapper) {
|
||||||
return out << wrapper.as_string();
|
return out << wrapper.as_string();
|
||||||
}
|
}
|
||||||
inline ::std::ostream &operator<<(::std::ostream out,
|
inline ::std::ostream &operator<<(::std::ostream &out,
|
||||||
const to_base58 &wrapper) {
|
const to_base58 &wrapper) {
|
||||||
return out << wrapper.as_string();
|
return out << wrapper.as_string();
|
||||||
}
|
}
|
||||||
inline ::std::ostream &operator<<(::std::ostream out,
|
inline ::std::ostream &operator<<(::std::ostream &out,
|
||||||
const to_base64 &wrapper) {
|
const to_base64 &wrapper) {
|
||||||
return out << wrapper.as_string();
|
return out << wrapper.as_string();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user