public inbox for [email protected]
help / color / mirror / Atom feedFrom: Tristan Partin <[email protected]>
To: [email protected]
Subject: Add missing includes
Date: Mon, 22 May 2023 10:10:31 -0500
Message-ID: <CSSWHSSN4B6S.14UNR4TB14WOU@c3po> (raw)
Hi,
Some files were missing information from the c.h header.
--
Tristan Partin
Neon (https://neon.tech)
Attachments:
[text/x-patch] v1-0001-Add-some-missing-includes.patch (1.0K, ../CSSWHSSN4B6S.14UNR4TB14WOU@c3po/2-v1-0001-Add-some-missing-includes.patch)
download | inline diff:
From 3c0c32077bb9626d4ebad1452b9fc9937c99518d Mon Sep 17 00:00:00 2001
From: Tristan Partin <[email protected]>
Date: Mon, 22 May 2023 10:07:45 -0500
Subject: [PATCH postgres v1] Add some missing includes
Both files were missing defines/types from c.h. Issue found through
usage of clangd.
---
src/bin/psql/settings.h | 1 +
src/include/fe_utils/cancel.h | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/bin/psql/settings.h b/src/bin/psql/settings.h
index 73d4b393bc..f429ca6ad9 100644
--- a/src/bin/psql/settings.h
+++ b/src/bin/psql/settings.h
@@ -8,6 +8,7 @@
#ifndef SETTINGS_H
#define SETTINGS_H
+#include "c.h"
#include "fe_utils/print.h"
#include "variables.h"
diff --git a/src/include/fe_utils/cancel.h b/src/include/fe_utils/cancel.h
index 6e8b9ddfc4..733aaf7751 100644
--- a/src/include/fe_utils/cancel.h
+++ b/src/include/fe_utils/cancel.h
@@ -16,6 +16,7 @@
#include <signal.h>
+#include "c.h"
#include "libpq-fe.h"
extern PGDLLIMPORT volatile sig_atomic_t CancelRequested;
--
--
Tristan Partin
Neon (https://neon.tech)
view thread (6+ messages) latest in thread
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected]
Subject: Re: Add missing includes
In-Reply-To: <CSSWHSSN4B6S.14UNR4TB14WOU@c3po>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox