Skip to content

Commit

Permalink
DPL: keep code checker happy
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf committed Feb 10, 2024
1 parent 4d5481e commit f3fcdd4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Framework/DataInspector/src/DataInspector.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

using namespace rapidjson;

namespace o2::framework::DataInspector
namespace o2::framework::data_inspector
{
#if BOOST_ENDIAN_BIG_BYTE
static const auto endianness = "BIG";
Expand Down Expand Up @@ -147,4 +147,4 @@ std::vector<DIMessage> serializeO2Messages(const std::vector<DataRef>& refs, con

return messages;
}
} // namespace o2::framework::DataInspector
} // namespace o2::framework::data_inspector
4 changes: 2 additions & 2 deletions Framework/DataInspector/src/DataInspector.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@

#include <cstring>

namespace o2::framework::DataInspector
namespace o2::framework::data_inspector
{
inline bool isNonInternalDevice(const DeviceSpec& spec)
{
return spec.name.find("internal") == std::string::npos;
}

std::vector<DIMessage> serializeO2Messages(const std::vector<DataRef>& refs, const std::string& deviceName);
} // namespace o2::framework::DataInspector
} // namespace o2::framework::data_inspector

#endif // O2_DATAINSPECTOR_H

0 comments on commit f3fcdd4

Please sign in to comment.