Skip to content
Snippets Groups Projects
Commit 1dc12ac7 authored by Markus Frank's avatar Markus Frank
Browse files

Fix compile error on MAC

parent a6afac67
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ DECLARE_APPLY(ConditionsTest1,conditions_test) ...@@ -85,7 +85,7 @@ DECLARE_APPLY(ConditionsTest1,conditions_test)
namespace { namespace {
struct Callee { struct Callee {
void call(unsigned int tags, DetElement& det, void* param) { void call(unsigned long tags, DetElement& det, void* param) {
if ( DetElement::CONDITIONS_CHANGED == (tags&DetElement::CONDITIONS_CHANGED) ) if ( DetElement::CONDITIONS_CHANGED == (tags&DetElement::CONDITIONS_CHANGED) )
printout(INFO,"Callee","+++ Conditions update %s param:%p",det.path().c_str(),param); printout(INFO,"Callee","+++ Conditions update %s param:%p",det.path().c_str(),param);
if ( DetElement::PLACEMENT_CHANGED == (tags&DetElement::PLACEMENT_CHANGED) ) if ( DetElement::PLACEMENT_CHANGED == (tags&DetElement::PLACEMENT_CHANGED) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment