diff options
author | Ben Woosley <ben.woosley@gmail.com> | 2018-11-13 04:15:09 -0500 |
---|---|---|
committer | Ben Woosley <ben.woosley@gmail.com> | 2018-11-14 12:19:04 -0500 |
commit | 7bad78c2c83d73b7e0518f3e1b835f0157b80ec6 (patch) | |
tree | e07aa7895ccd6b34ec07fbe7f5fc12a161bd49ca /src/prevector.h | |
parent | b60f4e3f095124a71394d6b2aafaedca2be6c1ad (diff) |
Drop defunct IS_TRIVIALLY_CONSTRUCTIBLE handling from prevector.h
It's now only referenced from the bench, so leave it there. This allows us to
drop the associated includes as well.
Diffstat (limited to 'src/prevector.h')
-rw-r--r-- | src/prevector.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/prevector.h b/src/prevector.h index aa77573746..7865299706 100644 --- a/src/prevector.h +++ b/src/prevector.h @@ -15,8 +15,6 @@ #include <iterator> #include <type_traits> -#include <compat.h> - #pragma pack(push, 1) /** Implements a drop-in replacement for std::vector<T> which stores up to N * elements directly (without heap allocation). The types Size and Diff are |