Skip to content
Snippets Groups Projects
Commit c230ebbf authored by Axel Naumann's avatar Axel Naumann
Browse files

Silence warning.

parent 5bc3b3ce
Branches
Tags
No related merge requests found
...@@ -21,7 +21,7 @@ TEST(DrawTest, TwoD) { ...@@ -21,7 +21,7 @@ TEST(DrawTest, TwoD) {
canv.Draw(h); canv.Draw(h);
// No THist copt c'tor: // No THist copt c'tor:
//canv.Draw(TH2F(xaxis, yaxis)); //canv.Draw(TH2F(xaxis, yaxis));
canv.Draw(std::move(std::make_unique<TH2C>(xaxis, yaxis))); canv.Draw(std::make_unique<TH2C>(xaxis, yaxis));
EXPECT_EQ(canv.GetPrimitives().size(), 2u); EXPECT_EQ(canv.GetPrimitives().size(), 2u);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment