Merge remote-tracking branch 'tuxbox/master'

* needs compile fixes
* needs additional tests, of course :-)
This commit is contained in:
Stefan Seyfried
2016-10-22 11:37:40 +02:00
346 changed files with 13372 additions and 6088 deletions

View File

@@ -67,7 +67,7 @@ class CHDDMenuHandler : public CMenuTarget
std::set<std::string> kernel_fs_list;
struct cmp_hdd_by_name: public binary_function <const struct hdd_s, const struct hdd_s, bool>
{
bool operator() (const struct hdd_s c1, const struct hdd_s c2)
bool operator() (const struct hdd_s &c1, const struct hdd_s &c2)
{
return std::lexicographical_compare(c1.devname.begin(), c1.devname.end(), c2.devname.begin(), c2.devname.end());
};