Skip to content

Commit 6a4bf66

Browse files
committed
clang format
1 parent e57ce64 commit 6a4bf66

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

hist/hist/src/TF1.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ void TF1::Copy(TObject &obj) const
10301030
((TF1 &)obj).fParent = fParent;
10311031
((TF1 &)obj).fSave = fSave;
10321032
if (fHistogram) {
1033-
auto *h1 = (TH1*)fHistogram->Clone();
1033+
auto *h1 = (TH1 *)fHistogram->Clone();
10341034
h1->SetDirectory(nullptr);
10351035
((TF1 &)obj).fHistogram = h1;
10361036
} else {

hist/hist/test/test_tf1_drawcopy.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
#include "gtest/gtest.h"
55

66
// issue #13122
7-
TEST(TF1, DrawCopy) {
7+
TEST(TF1, DrawCopy)
8+
{
89
auto f = new TF1("f", "x*x", -3, 3);
910
f->GetXaxis()->SetTitle("xtitle");
1011
auto fcopy = f->DrawCopy();

0 commit comments

Comments
 (0)