Skip to content

Commit bb0e482

Browse files
committed
[roottest][io] Bring back __CLING__ guard in Hard2Stream members
Follows up on 5727e1d, bringing back a `__CINT__` preprocessor guard that should have stayed and rename it to `__CLING__`.
1 parent 5727e1d commit bb0e482

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

roottest/root/io/customStreamer/header.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
#include "TClass.h"
33
class Hard2Stream {
44
private:
5+
#ifndef __CLING__
56
double val;
7+
#endif
68
public:
79
Hard2Stream() : val(-1) {};
810
Hard2Stream(double v) : val(v) {};

0 commit comments

Comments
 (0)