Fixed the bug (missing internal::) from commit 279fc73896036900366fa1596ec4d624b9db1c05.

This commit is contained in:
Boris Perovic 2015-08-17 13:54:14 +02:00 committed by sftnight
parent f7cf46ab31
commit 63bc59dde6

View File

@ -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