aboutsummaryrefslogtreecommitdiff
path: root/compile_commands.json
diff options
context:
space:
mode:
authorLion Kortlepel <[email protected]>2026-01-14 23:19:55 +0100
committerLion Kortlepel <[email protected]>2026-01-14 23:19:55 +0100
commitca071e9ee92ea9eb139726bf8fa5433ad374fba8 (patch)
tree9a522471ba497cbf0ad124a0e8426c42241bc7f2 /compile_commands.json
parentf93efff02151e4a3affa4b2d0031e957fe7553aa (diff)
downloadqueue-ca071e9ee92ea9eb139726bf8fa5433ad374fba8.tar.zst
queue-ca071e9ee92ea9eb139726bf8fa5433ad374fba8.zip
feat!: implement typesafe queue
Diffstat (limited to 'compile_commands.json')
-rw-r--r--compile_commands.json40
1 files changed, 0 insertions, 40 deletions
diff --git a/compile_commands.json b/compile_commands.json
deleted file mode 100644
index e0ef177..0000000
--- a/compile_commands.json
+++ /dev/null
@@ -1,40 +0,0 @@
-[
- {
- "arguments": [
- "/usr/bin/cc",
- "-c",
- "-x",
- "c",
- "-Wall",
- "-Wextra",
- "-Wpedantic",
- "-Werror",
- "-ansi",
- "-pedantic",
- "-DLS_QUEUE_IMPLEMENTATION",
- "-Wno-error=pragma-once-outside-header",
- "-Wno-pragma-once-outside-header",
- "-o",
- "queue.o",
- "queue.h"
- ],
- "directory": "/home/lion/src/ls/ls_queue",
- "file": "/home/lion/src/ls/ls_queue/queue.h",
- "output": "/home/lion/src/ls/ls_queue/queue.o"
- },
- {
- "arguments": [
- "/usr/bin/cc",
- "-c",
- "queue.o",
- "-Itests",
- "-I.",
- "-o",
- "tests/tests",
- "tests/tests.c"
- ],
- "directory": "/home/lion/src/ls/ls_queue",
- "file": "/home/lion/src/ls/ls_queue/tests/tests.c",
- "output": "/home/lion/src/ls/ls_queue/tests/tests"
- }
-]