From 3521d4a525adbf9d4d86ec9021ef8ce22ecf2db0 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 23 Jul 2024 16:21:26 -0500 Subject: [PATCH] CMake: fix syntax warning --- cmake/configure/configure_20_trilinos.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/configure/configure_20_trilinos.cmake b/cmake/configure/configure_20_trilinos.cmake index 5efd540bf2..76ef7f1008 100644 --- a/cmake/configure/configure_20_trilinos.cmake +++ b/cmake/configure/configure_20_trilinos.cmake @@ -277,7 +277,7 @@ macro(feature_trilinos_find_external var) message(STATUS "Tpetra was found but is not usable due to a mismatch in ordinal number types.") set(TRILINOS_WITH_TPETRA OFF) - check_cxx_symbol_exists(HAVE_TPETRA_INT_INT "TpetraCore_config.h"_tpetra_int_int) + check_cxx_symbol_exists(HAVE_TPETRA_INT_INT "TpetraCore_config.h" _tpetra_int_int) check_cxx_symbol_exists(HAVE_TPETRA_INT_LONG_LONG "TpetraCore_config.h" _tpetra_int_long_long) if(NOT _tpetra_int_long_long AND DEAL_II_WITH_64BIT_INDICES) -- 2.39.5