Skip to content

Commit dccb1e8

Browse files
authored
Update TableHelper.h
1 parent 4257fb3 commit dccb1e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Common/Core/TableHelper.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ bool getTaskOptionValue(o2::framework::InitContext& initContext, const std::stri
102102
/// @param value Task configurable to inherit from (name and values are used)
103103
/// @param verbose if true, print debug messages
104104
template <typename ValueType>
105-
bool getTaskOptionValue(o2::framework::InitContext& initContext, const std::string& taskName, o2::framework::Configurable<ValueType>& value, const bool verbose = true)
105+
bool getTaskOptionValue(o2::framework::InitContext& initContext, const std::string& taskName, ValueType& configurable, const bool verbose = true)
106106
{
107-
return getTaskOptionValue<o2::framework::Configurable<ValueType>>(initContext, taskName, value.name, value.value, true);
107+
return getTaskOptionValue(initContext, taskName, configurable.name, configurable.value, verbose);
108108
}
109109

110110
#endif // COMMON_CORE_TABLEHELPER_H_

0 commit comments

Comments
 (0)