Bug 1384233 - Remove SizePrintfMacros.h. r=froydnj

We have a minimum requirement of VS 2015 for Windows builds, which supports
the z length modifier for format specifiers. So we don't need SizePrintfMacros.h
any more, and can just use %zu and friends directly everywhere.

MozReview-Commit-ID: 6s78RvPFMzv
This commit is contained in:
Kartikaya Gupta
2017-07-26 16:03:57 -04:00
parent 706dfb5db5
commit 14424677af
143 changed files with 391 additions and 549 deletions

View File

@@ -20,7 +20,6 @@
#include "nsIBufferedStreams.h"
#include "nsIFileStreams.h"
#include "mozilla/MemoryReporting.h"
#include "mozilla/SizePrintfMacros.h"
#include "mozilla/Telemetry.h"
#include "mozilla/FileUtils.h"
#include "mozilla/Logging.h"
@@ -146,7 +145,7 @@ nsUrlClassifierPrefixSet::MakePrefixSet(const uint32_t* aPrefixes, uint32_t aLen
LOG(("Total number of indices: %d", aLength));
LOG(("Total number of deltas: %d", totalDeltas));
LOG(("Total number of delta chunks: %" PRIuSIZE, mIndexDeltas.Length()));
LOG(("Total number of delta chunks: %zu", mIndexDeltas.Length()));
return NS_OK;
}