зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1290337 - Part 12: Use const reference in PodSet. r=sfink
This commit is contained in:
Родитель
22d9bd985f
Коммит
83ea1c9449
|
@ -306,7 +306,7 @@ namespace mozilla {
|
|||
*/
|
||||
template<typename T>
|
||||
static MOZ_ALWAYS_INLINE void
|
||||
PodSet(T* aDst, T aSrc, size_t aNElem)
|
||||
PodSet(T* aDst, const T& aSrc, size_t aNElem)
|
||||
{
|
||||
for (const T* dstend = aDst + aNElem; aDst < dstend; ++aDst)
|
||||
*aDst = aSrc;
|
||||
|
|
Загрузка…
Ссылка в новой задаче