16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 00:09:18 +02:00

reformat: remove redundant 'inline' specifier

This commit is contained in:
jerrrrycho
2026-07-04 05:58:21 +02:00
parent b4b6686320
commit 6e4d000ddb
85 changed files with 877 additions and 988 deletions

View File

@@ -10,17 +10,17 @@ namespace gl
GLuint id = 0;
public:
inline operator GLuint() const
operator GLuint() const
{
return id;
}
inline operator GLuint* const()
operator GLuint* const()
{
return &id;
}
inline operator const GLuint* const() const
operator const GLuint* const() const
{
return &id;
}