Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix clang error in CondTools/RunInfo. #3817

Merged
merged 1 commit into from May 13, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion CondTools/RunInfo/src/L1TriggerScalerRead.cc
Expand Up @@ -351,7 +351,6 @@ std::cout<< "table handling " << std::endl;
Itemp.m_date = boost::posix_time::to_iso_extended_string(pt);
std::cout<< " date extracted == " << Itemp.m_date << std::endl;
} else {
Itemp.m_date=="NULL";
std::cout<< "date extracted == " << Itemp.m_date<<std::endl;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not an assignment. I suspect what people wanted was:

Itemp.m_date="NULL";

}
delete queryIII;
Expand Down