small fixes
This commit is contained in:
parent
b22a830d18
commit
98d58d8e60
|
|
@ -113,8 +113,8 @@ class null_observer : public observer<Type> {
|
|||
public:
|
||||
template < class OtherType >
|
||||
explicit null_observer(const null_observer<OtherType> *) {}
|
||||
void on_attach(repository_node &, Type &) override {}
|
||||
void on_detach(repository_node &, Type &) override {}
|
||||
void on_attach(const repository_node &, const Type &) const override {}
|
||||
void on_detach(const repository_node &, const Type &) const override {}
|
||||
void on_insert(Type &) override {}
|
||||
void on_update(Type &) override {}
|
||||
void on_delete(Type &) override {}
|
||||
|
|
|
|||
|
|
@ -88,9 +88,11 @@ struct pk_field_locator {
|
|||
desc.kind = pk_kind::uuid;
|
||||
|
||||
desc.is_known_at = [](void *obj, const std::size_t off) -> bool {
|
||||
auto *p = reinterpret_cast<uuid16 *>(static_cast<std::uint8_t *>(obj) + off);
|
||||
const auto *p = reinterpret_cast<uuid16 *>(static_cast<std::uint8_t *>(obj) + off);
|
||||
// “unknown” = all zeros
|
||||
for (auto b: *p) { if (b != 0) return true; }
|
||||
for (const auto b: *p) {
|
||||
if (b != 0) return true;
|
||||
}
|
||||
return false;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue