[Solved] How to create an empty std::map object? [closed]

[ad_1]

Any better solution?

Taking your question literally, no. There is no better solution.

This will create a default constructed, and therefore empty std::map<int,int>.

std::map<int,int> m; 

[ad_2]

solved How to create an empty std::map object? [closed]