s/size_t/std::size_t/g - for compatibility with other builds
For compatibility with the Google3 build system, use std::size_t instead
of gnu size_t.
Change-Id: Ie361de9c507119aa7db93d24b6e199547bd123af
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/main.cpp b/main.cpp
index 29587ec..f8700b1 100644
--- a/main.cpp
+++ b/main.cpp
@@ -39,7 +39,7 @@
FileHandler ubitarballHandler(TARBALL_STAGED_NAME);
/* The maximum external buffer size we expect is 64KB. */
-static constexpr size_t memoryRegionSize = 64 * 1024UL;
+static constexpr std::size_t memoryRegionSize = 64 * 1024UL;
#ifdef ENABLE_LPC_BRIDGE
#if defined(ASPEED_LPC)