diff options
| author | Henry Wong <movietravelcode@outlook.com> | 2018-11-16 13:01:57 +0000 |
|---|---|---|
| committer | Henry Wong <movietravelcode@outlook.com> | 2018-11-16 13:01:57 +0000 |
| commit | 831be096c72fc29d62f641f95d97a35f463eb202 (patch) | |
| tree | 11b6c3e038247e08be3d1aa4f3305392432119fe /lldb/source/Plugins/Language/CPlusPlus | |
| parent | 9dfe32e41ce6914cd93e5b001818185fc47889f8 (diff) | |
| download | bcm5719-llvm-831be096c72fc29d62f641f95d97a35f463eb202.tar.gz bcm5719-llvm-831be096c72fc29d62f641f95d97a35f463eb202.zip | |
[lldb] NFC: Remove the extra ';'
Summary:
Remove extra `;` to eliminate the following pedantic warning.
```
warning: extra ';' [-Wpedantic]
```
Reviewers: shafik
Reviewed By: shafik
Subscribers: abidh, lldb-commits
Differential Revision: https://reviews.llvm.org/D54528
llvm-svn: 347047
Diffstat (limited to 'lldb/source/Plugins/Language/CPlusPlus')
| -rw-r--r-- | lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp b/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp index 04d8b804434..e874616c325 100644 --- a/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp +++ b/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp @@ -111,7 +111,7 @@ ValueObjectSP LibcxxVariantGetNthHead(ValueObjectSP &impl_sp, uint64_t index) { } return current_level->GetChildMemberWithName(ConstString("__head"), true); -}; +} } // namespace namespace lldb_private { |

