Fixed the bug (missing internal::) from commit 279fc73896036900366fa1596ec4d624b9db1c05.
This commit is contained in:
parent
f7cf46ab31
commit
63bc59dde6
@ -87,9 +87,9 @@ namespace cling {
|
||||
// Collections and general fallback entry function
|
||||
template<typename CollectionType>
|
||||
auto printValue(const CollectionType &obj)
|
||||
-> decltype(printValue_impl(obj, 0), std::string())
|
||||
-> decltype(internal::printValue_impl(obj, 0), std::string())
|
||||
{
|
||||
return printValue_impl(obj, (short)0); // short -> int -> long = priority order
|
||||
return internal::printValue_impl(obj, (short)0); // short -> int -> long = priority order
|
||||
}
|
||||
|
||||
// Arrays
|
||||
|
Loading…
Reference in New Issue
Block a user