17-ify namespaces

This commit is contained in:
Alexey Rybalchenko
2021-01-13 15:45:38 +01:00
parent d9a5e82160
commit 4a09154a91
119 changed files with 280 additions and 847 deletions

View File

@@ -12,11 +12,7 @@
#include <ostream>
#include <tuple>
namespace fair
{
namespace mq
{
namespace tools
namespace fair::mq::tools
{
struct Version
@@ -32,8 +28,6 @@ struct Version
friend auto operator<<(std::ostream& os, const Version& v) -> std::ostream& { return os << v.fkMajor << "." << v.fkMinor << "." << v.fkPatch; }
};
} /* namespace tools */
} /* namespace mq */
} /* namespace fair */
} // namespace fair::mq::tools
#endif /* FAIR_MQ_TOOLS_VERSION_H */