Further C-style struct definitions fixes

This commit is contained in:
void_17
2026-03-02 15:11:05 +07:00
parent def238ff08
commit 09e0c04f7b
3 changed files with 20 additions and 17 deletions

View File

@@ -30,7 +30,8 @@ public:
int compareTo(const TextureHolder *other) const;
};
typedef struct
struct TextureHolderLessThan
{
bool operator() (const TextureHolder *first, const TextureHolder *second) const { return first->compareTo(second) >= 0; }
} TextureHolderLessThan;
inline bool operator()(const TextureHolder *first, const TextureHolder *second) const
{ return first->compareTo(second) >= 0; }
};