aboutsummaryrefslogtreecommitdiff
path: root/clint.py
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-02-18 20:54:15 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-02-18 20:54:15 -0500
commitb1d079c83b3dd459114d1ba7c2ff1b07a9ee3e9e (patch)
treee80358ae4795597680b45fe984dc5f2e9ce20237 /clint.py
parent366662d932551e558d10f09887ddf144ed5db34b (diff)
parent36340803afe1504f15468a715172c25cfef6974c (diff)
downloadrneovim-b1d079c83b3dd459114d1ba7c2ff1b07a9ee3e9e.tar.gz
rneovim-b1d079c83b3dd459114d1ba7c2ff1b07a9ee3e9e.tar.bz2
rneovim-b1d079c83b3dd459114d1ba7c2ff1b07a9ee3e9e.zip
Merge #1979 'Enable -Wconversion'
Diffstat (limited to 'clint.py')
-rwxr-xr-xclint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/clint.py b/clint.py
index 5e0e5a1e2b..290abd2820 100755
--- a/clint.py
+++ b/clint.py
@@ -2776,7 +2776,7 @@ def CheckLanguage(filename, clean_lines, linenum, file_extension,
# TODO(unknown): figure out if they're using default arguments in fn proto.
# Check if people are using the verboten C basic types.
- match = Search(r'\b(short|long(?! +double)|long long)\b', line)
+ match = Search(r'\b(short|long long)\b', line)
if match:
error(filename, linenum, 'runtime/int', 4,
'Use int16_t/int64_t/etc, rather than the C type %s'