Skip to content
Snippets Groups Projects

PyAnalysisExamples: Move test classes to a namespace.

Merged Scott Snyder requested to merge ssnyder/athena:ns.PyAnalysisExamples-20210415 into master
All threads resolved!
1 file
+ 1
2
Compare changes
  • Side-by-side
  • Inline
@@ -14,13 +14,12 @@ namespace PyAnalysisExamplesDict
{
void tmp ()
{
auto obj = std::make_unique<MyObj>("cccc");
auto obj = std::make_unique<AthPyEx::MyObj>("cccc");
obj->setA<float>(0);
obj->setA<double>(0);
obj->setA<int>(0);
obj->setA<long>(0);
obj->setA<bool>(false);
delete obj;
}
}
Loading