File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Framework/Core/include/Framework Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2024,12 +2024,12 @@ ColumnGetterFunction<R, T> createGetterPtr(const std::string_view& columnLabel)
20242024{
20252025 // allows user to use consistent formatting (with prefix) of all column labels
20262026 // by default there isn't 'f' prefix for dynamic column labels
2027- if (columnLabel.size () > 1 && columnLabel.substr (1 ) == C::columnLabel ()) {
2027+ if (columnLabel.size () > 1 && columnLabel.substr (1 ) == C::columnLabel ()) {
20282028 return &getColumnValue<R, T, C>;
20292029 }
20302030
20312031 // check also exact match if user is aware of prefix missing
2032- if (columnLabel == C::columnLabel ()) {
2032+ if (columnLabel == C::columnLabel ()) {
20332033 return &getColumnValue<R, T, C>;
20342034 }
20352035
You can’t perform that action at this time.
0 commit comments