diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-27 00:41:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 07:41:43 +0800 |
commit | c2a5105e88758fc27fbcf49909c7790a75810e8a (patch) | |
tree | 1305a16983a0bb0b68218161deb0673e0ee0a9f8 | |
parent | 3514b26a5df47094a3142103361e09b7f965fb0b (diff) | |
download | rneovim-c2a5105e88758fc27fbcf49909c7790a75810e8a.tar.gz rneovim-c2a5105e88758fc27fbcf49909c7790a75810e8a.tar.bz2 rneovim-c2a5105e88758fc27fbcf49909c7790a75810e8a.zip |
build(IWYU): remove arabic_defs.h (#26235)
A _defs header is only needed if it's included by multiple files.
-rw-r--r-- | cmake.config/iwyu/mapping.imp | 1 | ||||
-rw-r--r-- | src/nvim/arabic.h | 2 | ||||
-rw-r--r-- | src/nvim/arabic_defs.h | 3 |
3 files changed, 1 insertions, 5 deletions
diff --git a/cmake.config/iwyu/mapping.imp b/cmake.config/iwyu/mapping.imp index 9a433714dc..90c4ea36bc 100644 --- a/cmake.config/iwyu/mapping.imp +++ b/cmake.config/iwyu/mapping.imp @@ -195,7 +195,6 @@ # headers on the left, it will use the headers on the right if possible. This # isn't explicitly mentioned in the IWYU docs, this is just my interpretation # of its behavior. - { include: [ '"nvim/arabic_defs.h"', public, '"nvim/arabic.h"', public ] }, { include: [ '"nvim/arglist_defs.h"', public, '"nvim/arglist.h"', public ] }, { include: [ '"nvim/buffer_defs.h"', public, '"nvim/buffer.h"', public ] }, { include: [ '"nvim/cmdexpand_defs.h"', public, '"nvim/cmdexpand.h"', public ] }, diff --git a/src/nvim/arabic.h b/src/nvim/arabic.h index 9b3c5b6cee..ac27153a37 100644 --- a/src/nvim/arabic.h +++ b/src/nvim/arabic.h @@ -1,6 +1,6 @@ #pragma once -#include "nvim/arabic_defs.h" +#define ARABIC_CHAR(ch) (((ch) & 0xFF00) == 0x0600) #ifdef INCLUDE_GENERATED_DECLARATIONS # include "arabic.h.generated.h" diff --git a/src/nvim/arabic_defs.h b/src/nvim/arabic_defs.h deleted file mode 100644 index 605ae7603a..0000000000 --- a/src/nvim/arabic_defs.h +++ /dev/null @@ -1,3 +0,0 @@ -#pragma once - -#define ARABIC_CHAR(ch) (((ch) & 0xFF00) == 0x0600) |