diff options
author | Shafik Yaghmour <syaghmour@apple.com> | 2018-09-10 23:12:29 +0000 |
---|---|---|
committer | Shafik Yaghmour <syaghmour@apple.com> | 2018-09-10 23:12:29 +0000 |
commit | 387564392854e2307dc7cd50fc5b19a156fb1522 (patch) | |
tree | a064532b7f1bee5fcb5d0d75819e8cc1801eef10 /lldb/source/Plugins/Language | |
parent | ae3f793e9e19ca36192a8161c69dee32c037e7a8 (diff) | |
download | bcm5719-llvm-387564392854e2307dc7cd50fc5b19a156fb1522.tar.gz bcm5719-llvm-387564392854e2307dc7cd50fc5b19a156fb1522.zip |
First test commit into svn, adding space to comment
llvm-svn: 341879
Diffstat (limited to 'lldb/source/Plugins/Language')
-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 762b824f262..621c1badd65 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; |