Undoing first commit which added a space to a comment
authorShafik Yaghmour <syaghmour@apple.com>
Mon, 10 Sep 2018 23:18:32 +0000 (23:18 +0000)
committerShafik Yaghmour <syaghmour@apple.com>
Mon, 10 Sep 2018 23:18:32 +0000 (23:18 +0000)
llvm-svn: 341881

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

index 621c1ba..762b824 100644 (file)
@@ -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;