initial fix warnings and throw error on warnigns for docs. does not fix sls namespace yet

This commit is contained in:
2026-02-23 16:12:52 +01:00
parent 8f07d2a464
commit f2d294815e
10 changed files with 31 additions and 8 deletions
+3 -2
View File
@@ -1565,7 +1565,7 @@ std::string Caller::define_bit(int action) {
std::string Caller::definelist_reg(int action) {
std::ostringstream os;
if (action == defs::HELP_ACTION) {
os << "List of user-defined register definitions in shared memory."
os << "\n\tList of user-defined register definitions in shared memory."
<< '\n';
} else if (action == defs::PUT_ACTION) {
throw RuntimeError("cannot put");
@@ -1584,7 +1584,8 @@ std::string Caller::definelist_reg(int action) {
std::string Caller::definelist_bit(int action) {
std::ostringstream os;
if (action == defs::HELP_ACTION) {
os << "List of user-defined bit definitions in shared memory." << '\n';
os << "\n\tList of user-defined bit definitions in shared memory."
<< '\n';
} else if (action == defs::PUT_ACTION) {
throw RuntimeError("cannot put");
} else if (action == defs::GET_ACTION) {