aboutsummaryrefslogtreecommitdiff
path: root/fidelity.cc
diff options
context:
space:
mode:
Diffstat (limited to 'fidelity.cc')
-rw-r--r--fidelity.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/fidelity.cc b/fidelity.cc
index 89c3c8c..250c9d9 100644
--- a/fidelity.cc
+++ b/fidelity.cc
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// -*- mode: C++ -*-
//
-// Copyright 2023 Google LLC
+// Copyright 2023-2024 Google LLC
//
// Licensed under the Apache License v2.0 with LLVM Exceptions (the
// "License"); you may not use this file except in compliance with the
@@ -53,6 +53,7 @@ struct Fidelity {
void operator()(const BaseClass&, Id);
void operator()(const Method&, Id);
void operator()(const Member&, Id);
+ void operator()(const VariantMember&, Id);
void operator()(const StructUnion&, Id);
void operator()(const Enumeration&, Id);
void operator()(const Function&, Id);
@@ -121,6 +122,10 @@ void Fidelity::operator()(const Member& x, Id) {
(*this)(x.type_id);
}
+void Fidelity::operator()(const VariantMember& x, Id) {
+ (*this)(x.type_id);
+}
+
void Fidelity::operator()(const StructUnion& x, Id id) {
if (!x.name.empty()) {
auto [it, _] =