formatting
All checks were successful
Build on RHEL9 / build (push) Successful in 3m19s
Build on RHEL8 / build (push) Successful in 4m50s

This commit is contained in:
2025-06-16 22:10:44 +02:00
parent d19fe8b66a
commit 925176b661
5 changed files with 6 additions and 15 deletions

View File

@@ -5,12 +5,7 @@
namespace sls {
std::string ToString(bool value) {
return value ? "1" : "0";
}
std::string ToString(bool value) { return value ? "1" : "0"; }
std::string ToString(const slsDetectorDefs::xy &coord) {
std::ostringstream oss;