File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
lldb/source/Plugins/SymbolFile/NativePDB Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2601,7 +2601,7 @@ void SymbolFileNativePDB::CacheUdtDeclarations() {
2601
2601
2602
2602
llvm::Expected<Declaration>
2603
2603
SymbolFileNativePDB::ResolveUdtDeclaration (PdbTypeSymId type_id) {
2604
- std::call_once (m_cached_udt_declatations , [this ] { CacheUdtDeclarations (); });
2604
+ std::call_once (m_cached_udt_declarations , [this ] { CacheUdtDeclarations (); });
2605
2605
2606
2606
auto it = m_udt_declarations.find (type_id.index );
2607
2607
if (it == m_udt_declarations.end ())
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ class SymbolFileNativePDB : public SymbolFileCommon {
296
296
uint32_t Line;
297
297
};
298
298
llvm::DenseMap<llvm::codeview::TypeIndex, UdtDeclaration> m_udt_declarations;
299
- std::once_flag m_cached_udt_declatations ;
299
+ std::once_flag m_cached_udt_declarations ;
300
300
301
301
lldb_private::UniqueCStringMap<uint32_t > m_type_base_names;
302
302
You can’t perform that action at this time.
0 commit comments