#include namespace mbgl { namespace style { CustomLayer::Impl::Impl(const std::string& id_, std::unique_ptr host_) : Layer::Impl(id_, std::string()) { host = std::move(host_); } bool CustomLayer::Impl::hasLayoutDifference(const Layer::Impl&) const { return false; } void CustomLayer::Impl::stringifyLayout(rapidjson::Writer&) const { } } // namespace style } // namespace mbgl