Style: Fix issues with clang-format 8.0

This commit is contained in:
Rémi Verschelde 2019-05-20 13:51:51 +02:00
parent 8b0ea33777
commit 6920c82742
9 changed files with 43 additions and 57 deletions

View file

@ -172,10 +172,9 @@ class ResourceFormatSaverTextInstance {
struct ResourceSort {
RES resource;
int index;
bool operator<(const ResourceSort& p_right) const {
bool operator<(const ResourceSort &p_right) const {
return index < p_right.index;
}
};
void _find_resources(const Variant &p_variant, bool p_main = false);