bit_map: Add missing include for size_t definition

This commit is contained in:
sephiroth99 2015-12-30 10:37:01 -05:00
parent fc04ca040f
commit fa953fe758
1 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@
#ifndef XENIA_BASE_BIT_MAP_H_
#define XENIA_BASE_BIT_MAP_H_
#include <cstddef>
#include <cstdint>
#include <vector>
@ -52,4 +53,4 @@ class BitMap {
} // namespace xe
#endif // XENIA_BASE_BIT_MAP_H_
#endif // XENIA_BASE_BIT_MAP_H_