diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-07-17 00:06:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-17 00:06:25 +0200 |
commit | f77c3176ab5cb583fc32bfdebeb320481b7d3592 (patch) | |
tree | 05ac4efbe915aed534b3678b3c358547176314ad /tools | |
parent | 24c2e4d3ac4415a0033339cdc74c9251126166ed (diff) | |
parent | fff3ded2978ccbeae2d2f6a95415b663fce850d8 (diff) | |
download | meson-f77c3176ab5cb583fc32bfdebeb320481b7d3592.zip meson-f77c3176ab5cb583fc32bfdebeb320481b7d3592.tar.gz meson-f77c3176ab5cb583fc32bfdebeb320481b7d3592.tar.bz2 |
Merge pull request #2070 from mesonbuild/lgtmfixex
Static analyzer fixes
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/ac_converter.py | 1 | ||||
-rwxr-xr-x | tools/cmake2meson.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/tools/ac_converter.py b/tools/ac_converter.py index cf00fd0..eda5097 100755 --- a/tools/ac_converter.py +++ b/tools/ac_converter.py @@ -39,7 +39,6 @@ function_data = \ 'HAVE_POSIX_MEMALIGN': ('posix_memalign', 'stdlib.h'), 'HAVE_SIGACTION': ('sigaction', 'signal.h'), 'HAVE_ALARM': ('alarm', 'unistd.h'), - 'HAVE_CLOCK_GETTIME': ('clock_gettime', 'time.h'), 'HAVE_CTIME_R': ('ctime_r', 'time.h'), 'HAVE_DRAND48': ('drand48', 'stdlib.h'), 'HAVE_FLOCKFILE': ('flockfile', 'stdio.h'), diff --git a/tools/cmake2meson.py b/tools/cmake2meson.py index eae6344..0789a0c 100755 --- a/tools/cmake2meson.py +++ b/tools/cmake2meson.py @@ -74,7 +74,6 @@ class Lexer: lineno += 1 col = 1 line_start = mo.end() - pass elif tid == 'varexp': yield(Token('varexp', match_text[2:-1])) else: |