author | Rafael Ávila de Espíndola <respindola@mozilla.com> |
Tue, 21 Aug 2012 12:43:33 -0400 | |
changeset 102945 | 27b3a3e33f9246961a38378d078290c6d1fb928a |
parent 102944 | 86980fdd59dc64c422da337609f1abc1a7a58d6c |
child 102946 | dff40a793fab02d253ad2a69f7ed38b0d9b02479 |
push id | 23317 |
push user | ryanvm@gmail.com |
push date | Wed, 22 Aug 2012 02:05:02 +0000 |
treeherder | mozilla-central@abc17059522b [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | ms2ger |
bugs | 784381 |
milestone | 17.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
mfbt/SHA1.h | file | annotate | diff | comparison | revisions |
--- a/mfbt/SHA1.h +++ b/mfbt/SHA1.h @@ -19,17 +19,17 @@ * buffers passed to it. * The finish method may only be called once and cannot be followed by calls * to update. */ #ifndef mozilla_SHA1_h_ #define mozilla_SHA1_h_ -#include <stdint.h> +#include "mozilla/StandardInteger.h" namespace mozilla { class SHA1Sum { union { uint32_t w[16]; /* input buffer */ uint8_t b[64]; } u; uint64_t size; /* count of hashed bytes. */ unsigned H[22]; /* 5 state variables, 16 tmp values, 1 extra */