[lldb] NFC: Remove the extra ';'
authorHenry Wong <movietravelcode@outlook.com>
Fri, 16 Nov 2018 13:01:57 +0000 (13:01 +0000)
committerHenry Wong <movietravelcode@outlook.com>
Fri, 16 Nov 2018 13:01:57 +0000 (13:01 +0000)
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

lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp

index 04d8b80..e874616 100644 (file)
@@ -111,7 +111,7 @@ ValueObjectSP LibcxxVariantGetNthHead(ValueObjectSP &impl_sp, uint64_t index) {
   }
 
   return current_level->GetChildMemberWithName(ConstString("__head"), true);
-};
+}
 } // namespace
 
 namespace lldb_private {