[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
This commit is contained in:
Henry Wong 2018-11-16 13:01:57 +00:00
parent 9dfe32e41c
commit 831be096c7
1 changed files with 1 additions and 1 deletions

View File

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