mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-08-01 22:13:42 +02:00
initial fix warnings and throw error on warnigns for docs. does not fix sls namespace yet
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user