Skip to content

Commit cebc039

Browse files
committed
fix
1 parent 0ea2659 commit cebc039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataFormats/Detectors/CTP/src/Configuration.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ int CTPConfiguration::getInputIndex(const std::string& name) const
782782
}
783783
std::string CTPConfiguration::getClassNameFromIndex(int index)
784784
{
785-
if (index < mCTPClasses.size()) {
785+
if (index < (int)mCTPClasses.size()) {
786786
return mCTPClasses[index].name;
787787
} else {
788788
std::string name = "Cls" + std::to_string(index);

0 commit comments

Comments
 (0)