Bug 1611536 - Add stdint.h include for fixed-width integer types r=Ehsan

musl libc does not define these types through the other headers
included by this file, which causes errors when building RemoteUtils.cpp
(which indirectly includes nsCharTraits.h):

	error: unknown type name 'int32_t'

Differential Revision: https://phabricator.services.mozilla.com/D61040

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Michael Forney 2020-01-25 00:40:51 +00:00
Родитель eccae96ef4
Коммит 02f3747734
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -8,6 +8,7 @@
#define nsCharTraits_h___
#include <ctype.h> // for |EOF|, |WEOF|
#include <stdint.h> // for |uint32_t|
#include <string.h> // for |memcpy|, et al
#include "mozilla/MemoryChecking.h"