From 5329877e694991a4d74f399ca4761a90f6200e59 Mon Sep 17 00:00:00 2001 From: Thomas Madlener Date: Mon, 30 Sep 2024 15:15:49 +0200 Subject: [PATCH] Fix comment --- include/podio/detail/PreprocessorMacros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/podio/detail/PreprocessorMacros.h b/include/podio/detail/PreprocessorMacros.h index 6db53a1d4..3a038a9c2 100644 --- a/include/podio/detail/PreprocessorMacros.h +++ b/include/podio/detail/PreprocessorMacros.h @@ -2,7 +2,7 @@ #define PODIO_DETAIL_PREPROCESSORMACROS_H // Preprocessor helper macros for concatenating tokens at preprocessing times -// Necessary because we use __COUNTER__ below for unique names of static +// Necessary because we use __COUNTER__ for unique names of static // variables for values returned by registration function calls #define PODIO_PP_CONCAT_IMPL(x, y) x##y #define PODIO_PP_CONCAT(x, y) PODIO_PP_CONCAT_IMPL(x, y)