Skip to content

Commit

Permalink
[C/C++] adding missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Apr 6, 2023
1 parent 986e9b6 commit b28989f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/c_common/pgdata_getters.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@ extern "C" {

#ifdef __cplusplus
#include <cstddef>
#include <cstdint>
#else
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
#endif

Expand Down
2 changes: 2 additions & 0 deletions include/cpp_common/get_check_data.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ extern "C" {
#include <postgres.h>
#include <utils/array.h>
#include <access/htup_details.h>
#include <catalog/pg_type.h>
}

#include <vector>
#include <string>
#include <cstdint>


using Column_info_t = struct Column_info_t;
Expand Down

0 comments on commit b28989f

Please sign in to comment.