Where does the __1 symbol come from when using LLVM’s libc++?

It is from C++11 inlined namespaces

libc++ has something like

namespace std {
    inline namespace __1 {
        ....

more at What are inline namespaces for?

Leave a Comment