// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "error_support.h" #include <cassert> namespace crdtp { void ErrorSupport::Push() { … } void ErrorSupport::Pop() { … } void ErrorSupport::SetName(const char* name) { … } void ErrorSupport::SetIndex(size_t index) { … } void ErrorSupport::AddError(const char* error) { … } span<uint8_t> ErrorSupport::Errors() const { … } } // namespace crdtp