aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.ucl/object.ccm
diff options
context:
space:
mode:
Diffstat (limited to 'nihil.ucl/object.ccm')
-rw-r--r--nihil.ucl/object.ccm13
1 files changed, 0 insertions, 13 deletions
diff --git a/nihil.ucl/object.ccm b/nihil.ucl/object.ccm
index 72abc00..0814125 100644
--- a/nihil.ucl/object.ccm
+++ b/nihil.ucl/object.ccm
@@ -133,19 +133,6 @@ export struct object {
return {dptr, dlen};
}
- // Return a sub-object of this one.
- auto lookup(this object const &self, std::string_view key)
- -> std::optional<object>
- {
- auto const *obj = ::ucl_object_lookup_any(
- self.get_ucl_object(),
- key.data(), key.size());
- if (obj == nullptr)
- return {};
-
- return {object(nihil::ucl::ref, obj)};
- }
-
protected:
// The object we're wrapping.
::ucl_object_t *_object = nullptr;