diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2019-09-23 13:43:40 +0300 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2019-09-25 18:59:07 +0300 |
commit | 3c23f6f9f7f92ef43cb3d78e5570976058cf49c5 (patch) | |
tree | c1176dfb678bdaf50df9891e07ade59cae855bc1 /.clang-tidy | |
parent | 60a3096109a2eba4580bac72014c0ccd57cdcd8a (diff) | |
download | qtlocation-mapboxgl-3c23f6f9f7f92ef43cb3d78e5570976058cf49c5.tar.gz |
[core] Fix bugprone-use-after-move
Luckily this is an enum and was being copied.
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 45e598fcdf..d62f2dfc53 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,3 +1,4 @@ Checks: '-*,bugprone-*,clang-analyzer-*,google-*,modernize-*,performance-*,-clang-analyzer-osx.*,-google-readability-braces-around-statements,-google-readability-todo,-google-runtime-int,-google-runtime-references' +WarningsAsErrors: 'bugprone-use-after-move' HeaderFilterRegex: '.*' FormatStyle: file |