diff options
author | James McCoy <jamessan@jamessan.com> | 2018-03-11 20:17:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-11 20:17:28 -0400 |
commit | f5b0f5e17fbfa5e7905e95374791c36042f7d195 (patch) | |
tree | e55bc96df13b5d43f2117bfec1264b464e035994 /src | |
parent | e24e98534bbb915d484eca0056ff8b57a2eb2a1d (diff) | |
parent | 4e5e6506b51d3f952023df609b2b3e4469cbdc63 (diff) | |
download | rneovim-f5b0f5e17fbfa5e7905e95374791c36042f7d195.tar.gz rneovim-f5b0f5e17fbfa5e7905e95374791c36042f7d195.tar.bz2 rneovim-f5b0f5e17fbfa5e7905e95374791c36042f7d195.zip |
Merge pull request #8127 from jamessan/update-pvs-headers
Add missing PVS headers to new files
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/os/lang.c | 3 | ||||
-rw-r--r-- | src/nvim/os/pty_process_win.c | 3 | ||||
-rw-r--r-- | src/nvim/viml/parser/parser.c | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/src/nvim/os/lang.c b/src/nvim/os/lang.c index f0bbf4b1cb..47c278ee97 100644 --- a/src/nvim/os/lang.c +++ b/src/nvim/os/lang.c @@ -1,3 +1,6 @@ +// This is an open source non-commercial project. Dear PVS-Studio, please check +// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com + #ifdef __APPLE__ # define Boolean CFBoolean // Avoid conflict with API's Boolean # include <CoreFoundation/CFLocale.h> diff --git a/src/nvim/os/pty_process_win.c b/src/nvim/os/pty_process_win.c index b90578edb7..a6774a6275 100644 --- a/src/nvim/os/pty_process_win.c +++ b/src/nvim/os/pty_process_win.c @@ -1,3 +1,6 @@ +// This is an open source non-commercial project. Dear PVS-Studio, please check +// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com + #include <assert.h> #include <stdbool.h> #include <stdlib.h> diff --git a/src/nvim/viml/parser/parser.c b/src/nvim/viml/parser/parser.c index 08d8846018..8d26d08ea7 100644 --- a/src/nvim/viml/parser/parser.c +++ b/src/nvim/viml/parser/parser.c @@ -1,3 +1,6 @@ +// This is an open source non-commercial project. Dear PVS-Studio, please check +// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com + #include "nvim/viml/parser/parser.h" #ifdef INCLUDE_GENERATED_DECLARATIONS |