mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-31 07:12:39 -06:00
ide: Android builder c++11 fixes
git-svn-id: svn://ultimatepp.org/upp/trunk@8638 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
2dfcea4e06
commit
9b476be1df
5 changed files with 8 additions and 5 deletions
|
|
@ -171,7 +171,7 @@ Vector<AndroidVirtualDevice> AndroidSDK::FindVirtualDevices() const
|
|||
|
||||
String AndroidSDK::FindDefaultPlatform() const
|
||||
{
|
||||
Vector<String> platforms = pick(FindPlatforms());
|
||||
Vector<String> platforms = FindPlatforms();
|
||||
if(platforms.GetCount()) {
|
||||
Sort(platforms, StdGreater<String>());
|
||||
int idx = 0;
|
||||
|
|
@ -188,7 +188,7 @@ String AndroidSDK::FindDefaultPlatform() const
|
|||
|
||||
String AndroidSDK::FindDefaultBuildToolsRelease() const
|
||||
{
|
||||
Vector<String> releases = pick(FindBuildToolsReleases());
|
||||
Vector<String> releases = FindBuildToolsReleases();
|
||||
if(releases.GetCount()) {
|
||||
Sort(releases, StdGreater<String>());
|
||||
int idx = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue