From 9df288c01982854e2311bbdcc704ddc5491b9702 Mon Sep 17 00:00:00 2001 From: Anton Alkin Date: Tue, 23 Jun 2026 17:17:49 +0200 Subject: [PATCH 1/2] protect from cling --- Framework/Core/include/Framework/ASoA.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Framework/Core/include/Framework/ASoA.h b/Framework/Core/include/Framework/ASoA.h index 6ff77f8facaec..e7a9599178618 100644 --- a/Framework/Core/include/Framework/ASoA.h +++ b/Framework/Core/include/Framework/ASoA.h @@ -12,6 +12,10 @@ #ifndef O2_FRAMEWORK_ASOA_H_ #define O2_FRAMEWORK_ASOA_H_ +#if defined(__CLING__) +#error "Please do no include this file in ROOT dictionary generation" +#endif + #include "Framework/ConcreteDataMatcher.h" #include "Framework/Pack.h" // IWYU pragma: export #include "Framework/FunctionalHelpers.h" // IWYU pragma: export From 9dbc94ee537cd4c69facca8928cca9af7b54deff Mon Sep 17 00:00:00 2001 From: Anton Alkin Date: Tue, 23 Jun 2026 21:52:12 +0200 Subject: [PATCH 2/2] typo --- Framework/Core/include/Framework/ASoA.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Core/include/Framework/ASoA.h b/Framework/Core/include/Framework/ASoA.h index e7a9599178618..a21532e42e692 100644 --- a/Framework/Core/include/Framework/ASoA.h +++ b/Framework/Core/include/Framework/ASoA.h @@ -13,7 +13,7 @@ #define O2_FRAMEWORK_ASOA_H_ #if defined(__CLING__) -#error "Please do no include this file in ROOT dictionary generation" +#error "Please do not include this file in ROOT dictionary generation" #endif #include "Framework/ConcreteDataMatcher.h"