chore: add .clangd configuration

This commit is contained in:
2026-04-21 22:53:34 +08:00
parent c2321a0a6e
commit c7a0aff0c1
8 changed files with 24 additions and 23 deletions

View File

@@ -18,8 +18,8 @@ Shader::Shader(const std::string& name, const std::string& v_shader_path, const
}
Shader::Shader(Shader&& shader) noexcept:
m_hash(shader.m_hash),
m_program(shader.m_program),
m_hash(shader.m_hash),
m_name(std::move(shader.m_name))
{
shader.m_hash = 0;