aboutsummaryrefslogtreecommitdiff
path: root/src/include/jit/SectionMemoryManager.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2025-04-27 13:23:19 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2025-04-27 13:23:19 -0400
commit94b84a60729e15ee071739c3aec7fdd781123aab (patch)
treedd7cfe54f977154b1ea5ab121d724b0bade11e23 /src/include/jit/SectionMemoryManager.h
parent2311f193ea7db23f68f5471ae2c35940fc0d4794 (diff)
downloadpostgresql-94b84a60729e15ee071739c3aec7fdd781123aab.tar.gz
postgresql-94b84a60729e15ee071739c3aec7fdd781123aab.zip
Don't use double-quotes in #include's of system headers, redux.
This cleans up some loose ends left by commit e8ca9ed1d. I hadn't looked closely enough at these places before, but now I have. The use of double-quoted #includes for Perl headers in plperl_system.h seems to be simply a mistake introduced in 6c944bf3c and faithfully copied forward since then. (I had thought possibly it was required by some weird Windows build setup, but there's no evidence of that in our history.) The occurrences in SectionMemoryManager.h and SectionMemoryManager.cpp evidently stem from those files' origin as LLVM code. It's understandable that LLVM would treat their own files as needing double-quoted #includes; but they're still system headers to us. I also applied the same check to *.c files, and found a few other random incorrect usages in both directions. Our ECPG headers and test files routinely use angle brackets to refer to ECPG headers. I left those usages alone, since it seems reasonable for an ECPG user to regard those headers as system headers.
Diffstat (limited to 'src/include/jit/SectionMemoryManager.h')
-rw-r--r--src/include/jit/SectionMemoryManager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/jit/SectionMemoryManager.h b/src/include/jit/SectionMemoryManager.h
index 6bed991bd2b..924a99b0d33 100644
--- a/src/include/jit/SectionMemoryManager.h
+++ b/src/include/jit/SectionMemoryManager.h
@@ -19,10 +19,10 @@
#ifndef LLVM_EXECUTIONENGINE_BACKPORT_SECTIONMEMORYMANAGER_H
#define LLVM_EXECUTIONENGINE_BACKPORT_SECTIONMEMORYMANAGER_H
-#include "llvm/ADT/SmallVector.h"
-#include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
-#include "llvm/Support/Alignment.h"
-#include "llvm/Support/Memory.h"
+#include <llvm/ADT/SmallVector.h>
+#include <llvm/ExecutionEngine/RTDyldMemoryManager.h>
+#include <llvm/Support/Alignment.h>
+#include <llvm/Support/Memory.h>
#include <cstdint>
#include <string>
#include <system_error>