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) {
129
129
}
130
130
131
131
lldb_private::SaveCoreOptions &SBSaveCoreOptions::ref () const {
132
- return *m_opaque_up. get () ;
132
+ return *m_opaque_up;
133
133
}
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ class ClangExpressionDeclMap : public ClangASTSource {
344
344
345
345
// / Activate parser-specific variables
346
346
void EnableParserVars () {
347
- if (!m_parser_vars. get () )
347
+ if (!m_parser_vars)
348
348
m_parser_vars = std::make_unique<ParserVars>();
349
349
}
350
350
@@ -371,7 +371,7 @@ class ClangExpressionDeclMap : public ClangASTSource {
371
371
372
372
// / Activate struct variables
373
373
void EnableStructVars () {
374
- if (!m_struct_vars. get () )
374
+ if (!m_struct_vars)
375
375
m_struct_vars.reset (new struct StructVars );
376
376
}
377
377
You can’t perform that action at this time.
0 commit comments