mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
bazaar: Protect C++11 fix
git-svn-id: svn://ultimatepp.org/upp/trunk@9086 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
275b2dfb78
commit
0f99d35ffa
3 changed files with 6 additions and 6 deletions
|
|
@ -166,7 +166,7 @@ ProductVersions::ProductVersions()
|
|||
{
|
||||
}
|
||||
|
||||
ProductVersions::ProductVersions(ProductVersions pick_ &vs) : Vector<ProductVersion>(vs)
|
||||
ProductVersions::ProductVersions(ProductVersions rval_ vs) : Vector<ProductVersion>(pick(vs))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -190,9 +190,9 @@ ProductVersions::ProductVersions(String s)
|
|||
}
|
||||
|
||||
// assignement
|
||||
ProductVersions &ProductVersions::operator=(pick_ ProductVersions &vs)
|
||||
ProductVersions &ProductVersions::operator=(ProductVersions rval_ vs)
|
||||
{
|
||||
Vector<ProductVersion>::operator=(vs);
|
||||
Vector<ProductVersion>::operator=(pick(vs));
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -74,12 +74,12 @@ class ProductVersions : public Vector<ProductVersion>
|
|||
|
||||
// constructors
|
||||
ProductVersions();
|
||||
ProductVersions(ProductVersions pick_ &vs);
|
||||
ProductVersions(ProductVersions rval_ vs);
|
||||
ProductVersions(ProductVersions const &vs, int);
|
||||
ProductVersions(String s);
|
||||
|
||||
// assignement
|
||||
ProductVersions &operator=(pick_ ProductVersions &vs);
|
||||
ProductVersions &operator=(ProductVersions rval_ vs);
|
||||
|
||||
// load/store to/from string
|
||||
// one version per line, format MMMM.mmmm.dddddd
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#include "Core/init"
|
||||
#include "Cypher/init"
|
||||
#include "ProductVersion/init"
|
||||
#define BLITZ_INDEX__ F8430d8a06de87be1b24a1104c83a82fc
|
||||
#define BLITZ_INDEX__ F997d6ce4bab42f9415979e578a0b84b0
|
||||
#include "ProtectTranslations.icpp"
|
||||
#undef BLITZ_INDEX__
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue