aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/types.h
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-11-22 10:13:10 +0100
committerGitHub <noreply@github.com>2023-11-22 10:13:10 +0100
commit2e722da44d3807698374043ecdd9952bd0772a40 (patch)
treef37567ea2fe07b6e640386bec469bf8e5d9166d1 /src/nvim/types.h
parent8c6b0a5f21d5f0cf3781ef2b6fdbb306d5604a02 (diff)
parent0b38fe4dbb77c15ae6f5779174855acab25fc86c (diff)
downloadrneovim-2e722da44d3807698374043ecdd9952bd0772a40.tar.gz
rneovim-2e722da44d3807698374043ecdd9952bd0772a40.tar.bz2
rneovim-2e722da44d3807698374043ecdd9952bd0772a40.zip
Merge pull request #25826 from bfredl/art_deco
refactor(decorations): break up Decoration struct into smaller pieces
Diffstat (limited to 'src/nvim/types.h')
-rw-r--r--src/nvim/types.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/types.h b/src/nvim/types.h
index 0e5f8e6504..623efe0c8d 100644
--- a/src/nvim/types.h
+++ b/src/nvim/types.h
@@ -43,6 +43,4 @@ typedef enum {
#define TRISTATE_FROM_INT(val) ((val) == 0 ? kFalse : ((val) >= 1 ? kTrue : kNone))
-typedef struct Decoration Decoration;
-
typedef int64_t OptInt;