From dc4401639de59435c5c956a76946dbee9638b7d3 Mon Sep 17 00:00:00 2001 From: Stephan Hageboeck Date: Tue, 27 Dec 2022 18:11:07 +0100 Subject: [PATCH] Fix a missing include. For an unknown reason, cling managed to compile a test that's missing an include directive. The include is added here, since it provoked a failure in a branch that's still WIP. --- root/io/uniquePointer/rwconst.C | 2 ++ 1 file changed, 2 insertions(+) diff --git a/root/io/uniquePointer/rwconst.C b/root/io/uniquePointer/rwconst.C index b6a5dc5bc9..79d9c2d1c1 100644 --- a/root/io/uniquePointer/rwconst.C +++ b/root/io/uniquePointer/rwconst.C @@ -1,3 +1,5 @@ +#include "classes.h" + #include "memory" #include "TFile.h" #include "TH1F.h"