diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-12-29 00:15:10 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-12-29 00:15:10 +0000 |
commit | c7d16559dc9fc00e610ef24e1c3331678e36f2bd (patch) | |
tree | 7cd889c64f8041f057a6758e0872e047bd9f5f13 /gfx/gl/program.h | |
parent | Tidy Camera::extentsAtDist (diff) | |
download | ilt-c7d16559dc9fc00e610ef24e1c3331678e36f2bd.tar.bz2 ilt-c7d16559dc9fc00e610ef24e1c3331678e36f2bd.tar.xz ilt-c7d16559dc9fc00e610ef24e1c3331678e36f2bd.zip |
Add missing explicit on constructors
Diffstat (limited to 'gfx/gl/program.h')
-rw-r--r-- | gfx/gl/program.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gfx/gl/program.h b/gfx/gl/program.h index eb10888..fd9edbf 100644 --- a/gfx/gl/program.h +++ b/gfx/gl/program.h @@ -10,7 +10,7 @@ class Location; using ProgramRef = glRef<GLuint, &glCreateProgram, &glDeleteProgram>; class Program { public: - template<typename... S> Program(const S &... srcs) + template<typename... S> explicit Program(const S &... srcs) { (glAttachShader(m_program, srcs.compile()), ...); linkAndValidate(); |