Bug 731789 - Followup, s/StdInt/StandardInteger in BloomFilter.h. r=me
--- a/mfbt/BloomFilter.h
+++ b/mfbt/BloomFilter.h
@@ -9,17 +9,17 @@
* never answer "no" when the correct answer is "yes" (but might
* incorrectly answer "yes" when the correct answer is "no").
*/
#ifndef mozilla_BloomFilter_h_
#define mozilla_BloomFilter_h_
#include "mozilla/Likely.h"
-#include "mozilla/StdInt.h"
+#include "mozilla/StandardInteger.h"
#include "mozilla/Util.h"
#include <string.h>
namespace mozilla {
/*
* This class implements a counting Bloom filter as described at