aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/log.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2020-09-19 11:02:32 +0200
committerGitHub <noreply@github.com>2020-09-19 11:02:32 +0200
commitcea2417f30bf728cd818311b1988e0ce223011d8 (patch)
tree39b327ea24c97778ff57371d3c11fe4d056eb4da /src/nvim/log.h
parent569e75799d7015b15631c80cee1feec561f29df7 (diff)
parent2f2c73265fd63af2f60799767417043ed15bd42c (diff)
downloadrneovim-cea2417f30bf728cd818311b1988e0ce223011d8.tar.gz
rneovim-cea2417f30bf728cd818311b1988e0ce223011d8.tar.bz2
rneovim-cea2417f30bf728cd818311b1988e0ce223011d8.zip
Merge pull request #12935 from vigoux/byte-change-lines
buf_updates: fix wrong updates on linewise change
Diffstat (limited to 'src/nvim/log.h')
-rw-r--r--src/nvim/log.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/log.h b/src/nvim/log.h
index 17ff095473..a6a4c78707 100644
--- a/src/nvim/log.h
+++ b/src/nvim/log.h
@@ -68,6 +68,10 @@
# define LOG_CALLSTACK_TO_FILE(fp) log_callstack_to_file(fp, __func__, __LINE__)
#endif
+#if defined(__has_include) && __has_include("sanitizer/asan_interface.h")
+# include "sanitizer/asan_interface.h"
+#endif
+
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "log.h.generated.h"
#endif