summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/integer-base.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/snippets/integer-base.md')
-rw-r--r--docs/markdown/snippets/integer-base.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/markdown/snippets/integer-base.md b/docs/markdown/snippets/integer-base.md
deleted file mode 100644
index 0a27c9afe..000000000
--- a/docs/markdown/snippets/integer-base.md
+++ /dev/null
@@ -1,9 +0,0 @@
-## Octal and binary string literals
-
-Octal and binary integer literals can now be used in build and option files.
-
-```meson
-int_493 = 0o755
-int_1365 = 0b10101010101
-```
-