forked from OSchip/llvm-project
warnings: Fix up several const qualified return types.
llvm-svn: 143379
This commit is contained in:
parent
8914cba576
commit
f9f7032b5d
|
@ -483,7 +483,7 @@ public:
|
|||
return m_head.GetCount();
|
||||
}
|
||||
|
||||
const int
|
||||
int
|
||||
GetRealIndexForIndex(int i);
|
||||
|
||||
bool
|
||||
|
|
|
@ -507,7 +507,7 @@ public:
|
|||
///
|
||||
/// @return \b true if the module should be excluded, \b false otherwise.
|
||||
//------------------------------------------------------------------
|
||||
const bool
|
||||
bool
|
||||
ModuleIsExcludedForNonModuleSpecificSearches (const FileSpec &module_spec);
|
||||
|
||||
//------------------------------------------------------------------
|
||||
|
@ -529,7 +529,7 @@ public:
|
|||
///
|
||||
/// @return \b true if the module should be excluded, \b false otherwise.
|
||||
//------------------------------------------------------------------
|
||||
const bool
|
||||
bool
|
||||
ModuleIsExcludedForNonModuleSpecificSearches (const lldb::ModuleSP &module_sp);
|
||||
|
||||
ArchSpec &
|
||||
|
|
|
@ -278,7 +278,7 @@ SyntheticScriptProvider::GetDescription()
|
|||
return sstr.GetString();
|
||||
}
|
||||
|
||||
const int
|
||||
int
|
||||
SyntheticArrayView::GetRealIndexForIndex(int i)
|
||||
{
|
||||
if (i >= GetCount())
|
||||
|
|
|
@ -935,7 +935,7 @@ Target::ModulesDidUnload (ModuleList &module_list)
|
|||
}
|
||||
|
||||
|
||||
const bool
|
||||
bool
|
||||
Target::ModuleIsExcludedForNonModuleSpecificSearches (const FileSpec &module_spec)
|
||||
{
|
||||
|
||||
|
@ -965,7 +965,7 @@ Target::ModuleIsExcludedForNonModuleSpecificSearches (const FileSpec &module_spe
|
|||
}
|
||||
}
|
||||
|
||||
const bool
|
||||
bool
|
||||
Target::ModuleIsExcludedForNonModuleSpecificSearches (const lldb::ModuleSP &module_sp)
|
||||
{
|
||||
if (!m_breakpoints_use_platform_avoid)
|
||||
|
|
Loading…
Reference in New Issue