Skip to content

Commit a2d6cd8

Browse files
committed
Code-checks/Format
1 parent 9195850 commit a2d6cd8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CondCore/CondDB/src/IOVProxy.cc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ namespace cond {
4545
retVal.since = std::get<0>(*m_current);
4646
auto next = m_current;
4747
next++;
48-
if(next==m_parent->m_array->end()){
49-
retVal.till = cond::time::MAX_VAL;
48+
if (next == m_parent->m_array->end()) {
49+
retVal.till = cond::time::MAX_VAL;
5050
} else {
51-
retVal.till = cond::time::tillTimeFromNextSince(std::get<0>(*next), m_parent->m_tagInfo.timeType);
51+
retVal.till = cond::time::tillTimeFromNextSince(std::get<0>(*next), m_parent->m_tagInfo.timeType);
5252
}
5353
// default is the end of validity when set...
54-
if(retVal.till > m_parent->m_tagInfo.endOfValidity){
55-
retVal.till = m_parent->m_tagInfo.endOfValidity;
54+
if (retVal.till > m_parent->m_tagInfo.endOfValidity) {
55+
retVal.till = m_parent->m_tagInfo.endOfValidity;
5656
}
5757
retVal.payloadId = std::get<1>(*m_current);
5858

0 commit comments

Comments
 (0)