diff options
author | rtk0c <[email protected]> | 2022-04-19 12:40:54 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-19 12:40:54 -0700 |
commit | 5f8b091d84bf6be9b2fa2e485e435e8f43e20b85 (patch) | |
tree | bc99dce491089cb2c8d64c25a032a5ce6ecf32aa /source/SmallVector.cpp | |
parent | 3290bb2b2dec223f0312c6d5fc3edf71d5d6e46f (diff) |
Changeset: 13 Fix SmallVector.cpp missing include & remove warning on MSVC
Diffstat (limited to 'source/SmallVector.cpp')
-rw-r--r-- | source/SmallVector.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/SmallVector.cpp b/source/SmallVector.cpp index ec1be43..c38e8a7 100644 --- a/source/SmallVector.cpp +++ b/source/SmallVector.cpp @@ -18,6 +18,7 @@ #include <cstdlib> #include <stdexcept> +#include <string> // Check that no bytes are wasted and everything is well-aligned. namespace { |