new compiler options in CMakeLists, fixes

This commit is contained in:
ProgramSnail 2023-05-19 10:27:14 +03:00
parent 9b3d2812ba
commit 17328b842c
11 changed files with 62 additions and 60 deletions

View file

@ -121,7 +121,7 @@ public:
const std::string& type,
const std::string& name,
utils::IsConstModifier modifier) {
std::optional<utils::IdType> id = FindFunctionId(path, name);
std::optional<utils::IdType> id = FindMethodId(path, type, name, modifier);
if (!id.has_value()) {
return std::nullopt;
}