From: Shafik Yaghmour Date: Mon, 10 Sep 2018 23:18:32 +0000 (+0000) Subject: Undoing first commit which added a space to a comment X-Git-Tag: llvmorg-8.0.0-rc1~9047 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f4babefdf192b3d5ee19615e240aeba54bb8ab1c;p=platform%2Fupstream%2Fllvm.git Undoing first commit which added a space to a comment llvm-svn: 341881 --- diff --git a/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp b/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp index 621c1ba..762b824 100644 --- a/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp +++ b/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp @@ -45,7 +45,7 @@ bool OptionalFrontEnd::Update() { // __engaged_ is a bool flag and is true if the optional contains a value. // Converting it to unsigned gives us a size of 1 if it contains a value - // and 0 if not . + // and 0 if not. m_size = engaged_sp->GetValueAsUnsigned(0); return false;