mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Cleanup jthread and fix win32 build
This commit is contained in:
parent
f3439c40d8
commit
04e9a9d541
29 changed files with 185 additions and 194 deletions
|
@ -60,7 +60,6 @@ class Settings
|
|||
public:
|
||||
Settings()
|
||||
{
|
||||
m_mutex.Init();
|
||||
}
|
||||
|
||||
void writeLines(std::ostream &os)
|
||||
|
@ -77,7 +76,7 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
// return all keys used
|
||||
// return all keys used
|
||||
std::vector<std::string> getNames(){
|
||||
std::vector<std::string> names;
|
||||
for(std::map<std::string, std::string>::iterator
|
||||
|
@ -86,7 +85,7 @@ public:
|
|||
{
|
||||
names.push_back(i->first);
|
||||
}
|
||||
return names;
|
||||
return names;
|
||||
}
|
||||
|
||||
// remove a setting
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue