mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 22:03:07 -06:00
.upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@8707 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
54542c3c7b
commit
287e32fe4a
1 changed files with 32 additions and 2 deletions
|
|
@ -51,6 +51,16 @@ void Autocomplete()
|
|||
One<String>()->
|
||||
}
|
||||
|
||||
void Autocomplete()
|
||||
{ // Check that this displays One autocomplete (not String)
|
||||
One<String>().
|
||||
}
|
||||
|
||||
void Autocomplete()
|
||||
{ // Displays String, it is OK as Single is function
|
||||
Single<String>().
|
||||
}
|
||||
|
||||
void Autocomplete()
|
||||
{
|
||||
Single<String>()->
|
||||
|
|
@ -157,7 +167,13 @@ void Autocomplete()
|
|||
void Autocomplete()
|
||||
{
|
||||
Vector<String> v;
|
||||
v.begin().
|
||||
v.begin()->
|
||||
}
|
||||
|
||||
void Autocomplete()
|
||||
{
|
||||
Array<String> v;
|
||||
v.begin()->
|
||||
}
|
||||
|
||||
void Autocomplete()
|
||||
|
|
@ -167,6 +183,13 @@ void Autocomplete()
|
|||
x.
|
||||
}
|
||||
|
||||
void Autocomplete()
|
||||
{
|
||||
Array<String> v;
|
||||
for(const auto& i : v)
|
||||
i.
|
||||
}
|
||||
|
||||
void Autocomplete()
|
||||
{
|
||||
Vector<String> v;
|
||||
|
|
@ -176,7 +199,14 @@ void Autocomplete()
|
|||
|
||||
void Autocomplete()
|
||||
{
|
||||
String txt[2]; // does not work!!!!
|
||||
std::vector<std::string> v; // does not work yet!!!
|
||||
for(const auto& i : v)
|
||||
i.
|
||||
}
|
||||
|
||||
void Autocomplete()
|
||||
{
|
||||
String txt[2]; // does not work yet!!!!
|
||||
txt[1].
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue