Cleanup: use braces for sources in intern/

Omitted intern/itasc as some of these sources are from KDL:
https://www.orocos.org/kdl.html
This commit is contained in:
Campbell Barton
2023-09-17 09:01:48 +10:00
parent e3444fd314
commit 5b9740c913
94 changed files with 2091 additions and 1046 deletions

View File

@@ -22,15 +22,17 @@ void AUD_destroySet(void *set)
char AUD_removeSet(void *set, void *entry)
{
if (set)
if (set) {
return reinterpret_cast<std::set<void *> *>(set)->erase(entry);
}
return 0;
}
void AUD_addSet(void *set, void *entry)
{
if (entry)
if (entry) {
reinterpret_cast<std::set<void *> *>(set)->insert(entry);
}
}
void *AUD_getSet(void *set)