warnings: Fix up several const qualified return types.

llvm-svn: 143379
This commit is contained in:
Daniel Dunbar 2011-10-31 22:50:37 +00:00
parent 8914cba576
commit f9f7032b5d
4 changed files with 6 additions and 6 deletions

View File

@ -483,7 +483,7 @@ public:
return m_head.GetCount();
}
const int
int
GetRealIndexForIndex(int i);
bool

View File

@ -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 &

View File

@ -278,7 +278,7 @@ SyntheticScriptProvider::GetDescription()
return sstr.GetString();
}
const int
int
SyntheticArrayView::GetRealIndexForIndex(int i)
{
if (i >= GetCount())

View File

@ -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)