From 1ddc3e6a6269d95d9e7456d5ca7402b5a42f1f3b Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Thu, 27 Jun 2024 17:46:08 -0400 Subject: [PATCH] xo-reflect: clang nit on FunctionTdxInfo --- include/xo/reflect/TypeDescr.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/xo/reflect/TypeDescr.hpp b/include/xo/reflect/TypeDescr.hpp index a91befc8..95d9364c 100644 --- a/include/xo/reflect/TypeDescr.hpp +++ b/include/xo/reflect/TypeDescr.hpp @@ -119,7 +119,8 @@ namespace xo { /* hashable contents of a FunctionTdx instance (without requiring decl of TypeDescrExtra), * for unique-ification of manually-constructed function types */ - struct FunctionTdxInfo { + class FunctionTdxInfo { + public: FunctionTdxInfo() = default; FunctionTdxInfo(TypeDescr retval_td, const std::vector & arg_td_v,