File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Plugins/ExpressionParser/Clang Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -129,5 +129,5 @@ uint64_t SBSaveCoreOptions::GetCurrentSizeInBytes(SBError &error) {
129129}
130130
131131lldb_private::SaveCoreOptions &SBSaveCoreOptions::ref () const {
132- return *m_opaque_up. get () ;
132+ return *m_opaque_up;
133133}
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ class ClangExpressionDeclMap : public ClangASTSource {
344344
345345 // / Activate parser-specific variables
346346 void EnableParserVars () {
347- if (!m_parser_vars. get () )
347+ if (!m_parser_vars)
348348 m_parser_vars = std::make_unique<ParserVars>();
349349 }
350350
@@ -371,7 +371,7 @@ class ClangExpressionDeclMap : public ClangASTSource {
371371
372372 // / Activate struct variables
373373 void EnableStructVars () {
374- if (!m_struct_vars. get () )
374+ if (!m_struct_vars)
375375 m_struct_vars.reset (new struct StructVars );
376376 }
377377
You can’t perform that action at this time.
0 commit comments