diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-21 17:59:41 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-21 17:59:41 +0100 |
commit | 465ea24362ee267cf83909efa0b5cdee689ff1f7 (patch) | |
tree | d51980f0d0ca1460c320704aea50030043692e7e /libpqpp/pq-binarycolumn.cpp | |
parent | Pass cppcheck and clang-tidy (diff) | |
download | libdbpp-postgresql-465ea24362ee267cf83909efa0b5cdee689ff1f7.tar.bz2 libdbpp-postgresql-465ea24362ee267cf83909efa0b5cdee689ff1f7.tar.xz libdbpp-postgresql-465ea24362ee267cf83909efa0b5cdee689ff1f7.zip |
First commit passing IWYU
Diffstat (limited to 'libpqpp/pq-binarycolumn.cpp')
-rw-r--r-- | libpqpp/pq-binarycolumn.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libpqpp/pq-binarycolumn.cpp b/libpqpp/pq-binarycolumn.cpp index ce4e8c1..0a488f7 100644 --- a/libpqpp/pq-binarycolumn.cpp +++ b/libpqpp/pq-binarycolumn.cpp @@ -1,5 +1,9 @@ #include "pq-binarycolumn.h" -#include "pq-selectbase.h" +#include "column.h" +#include "dbTypes.h" +#include "pq-column.h" +#include <cstdint> +#include <endian.h> #include <error.h> PQ::BinaryColumn::BinaryColumn(const PQ::SelectBase * s, unsigned int f) : PQ::Column(s, f) { } |