diff options
| author | Eric Fiselier <eric@efcs.ca> | 2018-10-01 01:59:37 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2018-10-01 01:59:37 +0000 |
| commit | 0b485f3e911e946da4ecac73544116df2bd4dae1 (patch) | |
| tree | bffb63e4b83eafe52d102397f3bb0947bc294c53 /libcxx/include/regex | |
| parent | cd269132ec1f4fc03c4405c42c2c991b5ace595e (diff) | |
| download | bcm5719-llvm-0b485f3e911e946da4ecac73544116df2bd4dae1.tar.gz bcm5719-llvm-0b485f3e911e946da4ecac73544116df2bd4dae1.zip | |
Fix even more Clang warnings.
This patch disables shift-sign-overflow warnings for now. It also
fixes most -Wfloat-equal warnings and -Wextra-semi warnings.
llvm-svn: 343438
Diffstat (limited to 'libcxx/include/regex')
| -rw-r--r-- | libcxx/include/regex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/regex b/libcxx/include/regex index db15f78e410..18585003a8f 100644 --- a/libcxx/include/regex +++ b/libcxx/include/regex @@ -1352,9 +1352,9 @@ public: virtual ~__node() {} _LIBCPP_INLINE_VISIBILITY - virtual void __exec(__state&) const {}; + virtual void __exec(__state&) const {} _LIBCPP_INLINE_VISIBILITY - virtual void __exec_split(bool, __state&) const {}; + virtual void __exec_split(bool, __state&) const {} }; // __end_state |

