incubator-graphar icon indicating copy to clipboard operation
incubator-graphar copied to clipboard

feat(c++): Use C++17's nested namespaces

Open acezen opened this issue 9 months ago • 0 comments

Describe the enhancement requested

Clang-tidy prefers it. It is more compact and now that we are on C++ 17 I don't see any reason we shouldn't move everything over.

Before:

namespace graphar {
namespace util {

After:

namespace graphar::util {

Component(s)

C++

acezen avatar May 07 '24 02:05 acezen