Bug 1276028 - add missing 'explicit' to ctor (r=red)

MozReview-Commit-ID: C8c4dkiGl6y

--HG--
extra : rebase_source : 8d3594dfd9f9ea340df9af50e76d18cf61dd1680
This commit is contained in:
Luke Wagner 2016-06-29 15:01:48 -05:00
Родитель e8c95f9701
Коммит 66862628ad
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -123,7 +123,7 @@ struct ShareableBase : RefCounted<T>
struct ShareableBytes : ShareableBase<ShareableBytes>
{
ShareableBytes() = default;
ShareableBytes(Bytes&& bytes) : bytes(Move(bytes)) {}
explicit ShareableBytes(Bytes&& bytes) : bytes(Move(bytes)) {}
// Vector is 'final', so instead make Vector a member and add boilerplate.
Bytes bytes;