Fix mix-guided use of const reference variable
It needs to be a mutable value variable to be std::move()d. Pick-to: 6.1 5.15 Change-Id: I9d78b2975f8964e7a7eb06771b0069d9b9e6661e Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
582fdf06d1
commit
8ec07b4afc
@ -964,7 +964,7 @@ QTzTimeZoneCacheEntry QTzTimeZoneCache::fetchEntry(const QByteArray &ianaId)
|
|||||||
void QTzTimeZonePrivate::init(const QByteArray &ianaId)
|
void QTzTimeZonePrivate::init(const QByteArray &ianaId)
|
||||||
{
|
{
|
||||||
static QTzTimeZoneCache tzCache;
|
static QTzTimeZoneCache tzCache;
|
||||||
const auto &entry = tzCache.fetchEntry(ianaId);
|
auto entry = tzCache.fetchEntry(ianaId);
|
||||||
if (entry.m_tranTimes.isEmpty() && entry.m_posixRule.isEmpty())
|
if (entry.m_tranTimes.isEmpty() && entry.m_posixRule.isEmpty())
|
||||||
return; // Invalid after all !
|
return; // Invalid after all !
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user