aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZyX <kp-pav@ya.ru>2014-06-01 02:53:21 +0400
committerThiago de Arruda <tpadilha84@gmail.com>2014-06-02 11:04:18 -0300
commita7e3c4f6f666a208d0e74f34058b755c6f1e64ea (patch)
treefd06c8557f5d883179ceabe80f51cf0cc84a7bca /src
parent6140f35eaedf12cb9bd039fe371ff42856ecdb85 (diff)
downloadrneovim-a7e3c4f6f666a208d0e74f34058b755c6f1e64ea.tar.gz
rneovim-a7e3c4f6f666a208d0e74f34058b755c6f1e64ea.tar.bz2
rneovim-a7e3c4f6f666a208d0e74f34058b755c6f1e64ea.zip
Remove a number of unneeded func_attr includes
Diffstat (limited to 'src')
-rw-r--r--src/nvim/garray.h2
-rw-r--r--src/nvim/log.h2
-rw-r--r--src/nvim/misc2.h1
-rw-r--r--src/nvim/ops.h1
4 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/garray.h b/src/nvim/garray.h
index 23f8b271b3..6e440039dd 100644
--- a/src/nvim/garray.h
+++ b/src/nvim/garray.h
@@ -1,8 +1,6 @@
#ifndef NVIM_GARRAY_H
#define NVIM_GARRAY_H
-#include "nvim/func_attr.h"
-
/// Structure used for growing arrays.
/// This is used to store information that only grows, is deleted all at
/// once, and needs to be accessed by index. See ga_clear() and ga_grow().
diff --git a/src/nvim/log.h b/src/nvim/log.h
index db73910e1e..6d97304af4 100644
--- a/src/nvim/log.h
+++ b/src/nvim/log.h
@@ -3,8 +3,6 @@
#include <stdbool.h>
-#include "nvim/func_attr.h"
-
#define DEBUG_LOG_LEVEL 0
#define INFO_LOG_LEVEL 1
#define WARNING_LOG_LEVEL 2
diff --git a/src/nvim/misc2.h b/src/nvim/misc2.h
index 501f411b06..f7695d1b94 100644
--- a/src/nvim/misc2.h
+++ b/src/nvim/misc2.h
@@ -1,7 +1,6 @@
#ifndef NVIM_MISC2_H
#define NVIM_MISC2_H
-#include "nvim/func_attr.h"
#include "nvim/os/shell.h"
#ifdef INCLUDE_GENERATED_DECLARATIONS
diff --git a/src/nvim/ops.h b/src/nvim/ops.h
index 3a30733b0c..8227821d35 100644
--- a/src/nvim/ops.h
+++ b/src/nvim/ops.h
@@ -1,7 +1,6 @@
#ifndef NVIM_OPS_H
#define NVIM_OPS_H
-#include "nvim/func_attr.h"
#include "nvim/types.h"
typedef int (*Indenter)(void);