diff options
author | Shafik Yaghmour <syaghmour@apple.com> | 2018-09-10 23:18:32 +0000 |
---|---|---|
committer | Shafik Yaghmour <syaghmour@apple.com> | 2018-09-10 23:18:32 +0000 |
commit | f4babefdf192b3d5ee19615e240aeba54bb8ab1c (patch) | |
tree | 5453904c3db480412823e77fde75287772bd2671 /lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp | |
parent | 9f0916129024a06e5f1e230d8308cd78e123bace (diff) | |
download | bcm5719-llvm-f4babefdf192b3d5ee19615e240aeba54bb8ab1c.tar.gz bcm5719-llvm-f4babefdf192b3d5ee19615e240aeba54bb8ab1c.zip |
Undoing first commit which added a space to a comment
llvm-svn: 341881
Diffstat (limited to 'lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp')
-rw-r--r-- | lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp b/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp index 621c1badd65..762b824f262 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; |