From § 2.10.3.2:
Each identifier starting with an underscore is reserved for implementation for use as a name in the global namespace.
To this end, is this standard program compliant? How does he do it _1, etc. Accessible from the global namespace? Or is this normal because it std::placeholdersis considered an "implementation"? Or is this normal because it _1is not actually in the global namespace? Something else?
using namespace std::placeholders;
int main(){}
source
share