From 1c03229d0b957be4f0cc1b0a904e6c5476e049fa Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Wed, 11 Mar 2026 08:41:57 -0500 Subject: [PATCH] build: retiring REPR argument to xo_add_genfacetimpl() --- cmake/xo_macros/xo_cxx.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmake/xo_macros/xo_cxx.cmake b/cmake/xo_macros/xo_cxx.cmake index 2003515f..13ca3f9a 100644 --- a/cmake/xo_macros/xo_cxx.cmake +++ b/cmake/xo_macros/xo_cxx.cmake @@ -1738,7 +1738,6 @@ function(xo_add_genfacetimpl) FACET_PKG # package providing abstract interface FACET_DIR # facet directory (instead of FACET_PKG) FACET # facet name - REPR # representation name INPUT # Input .json5 file OUTPUT_HPP_DIR # Directory for .hpp files OUTPUT_IMPL_SUBDIR # Subdirectory name for impl headers @@ -1754,9 +1753,6 @@ function(xo_add_genfacetimpl) if(NOT DEFINED GF_FACET) message(FATAL_ERROR "xo_add_genfacetimpl: FACET is required") endif() - if(NOT DEFINED GF_REPR) - message(FATAL_ERROR "xo_add_genfacetimpl: REPR is required") - endif() if(NOT DEFINED GF_INPUT) message(FATAL_ERROR "xo_add_genfacetimpl: INPUT is required") endif()