aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/marktree.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/marktree.h')
-rw-r--r--src/nvim/marktree.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/marktree.h b/src/nvim/marktree.h
index 5b3171d9aa..e2e05eebd5 100644
--- a/src/nvim/marktree.h
+++ b/src/nvim/marktree.h
@@ -32,7 +32,6 @@ typedef struct {
iterstate_t s[MT_MAX_DEPTH];
} MarkTreeIter;
-
// Internal storage
//
// NB: actual marks have flags > 0, so we can use (row,col,0) pseudo-key for
@@ -109,7 +108,6 @@ static inline uint16_t mt_flags(bool right_gravity, uint8_t decor_level)
| (decor_level << MT_FLAG_DECOR_OFFSET));
}
-
struct mtnode_s {
int32_t n;
int32_t level;
@@ -130,7 +128,6 @@ typedef struct {
PMap(uint64_t) id2node[1];
} MarkTree;
-
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "marktree.h.generated.h"
#endif