From 38b18864816430af5f08a385aa8536a5f0e043af Mon Sep 17 00:00:00 2001 From: Ashley Ruglys Date: Tue, 2 Jan 2024 12:05:54 +1300 Subject: [PATCH 1/2] Fix get_operator_rename header --- bbl/src/bbl-genbind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbl/src/bbl-genbind.cpp b/bbl/src/bbl-genbind.cpp index 5453bea..bfa71b3 100644 --- a/bbl/src/bbl-genbind.cpp +++ b/bbl/src/bbl-genbind.cpp @@ -35,7 +35,7 @@ enum Result { ERROR_FILE_OPEN, }; -auto get_operator_rename(std::string const& name) -> std::string; +static auto get_operator_rename(std::string const& name) -> std::string; auto get_function_cast_string(FunctionDecl const* fd, std::string const& scope, From 5eef698db0fd7fd22508c5b20a700f10cb24ddf2 Mon Sep 17 00:00:00 2001 From: Ashley Ruglys Date: Mon, 15 Jan 2024 13:26:21 +1300 Subject: [PATCH 2/2] Include cstring in inheritance test --- test/inheritance/inheritance.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/inheritance/inheritance.hpp b/test/inheritance/inheritance.hpp index a7b1cff..79c3f6f 100644 --- a/test/inheritance/inheritance.hpp +++ b/test/inheritance/inheritance.hpp @@ -1,4 +1,5 @@ #include +#include namespace foo {