OpenGL3: Fix noexcept mismatch

This commit is contained in:
numzero 2023-10-07 19:57:40 +03:00 committed by sfan5
parent 5b2f1927d0
commit 3b198bdfda
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ namespace video
Extensions.emplace(std::move(name));
}
bool COpenGL3ExtensionHandler::queryExtension(const std::string &name) const{
bool COpenGL3ExtensionHandler::queryExtension(const std::string &name) const noexcept {
return Extensions.find(name) != Extensions.end();
}