There actually is an argument to be made for value_type over make_pair. This is because, for various arcane reasons, make_pair accepts its arguments by value. On the other hand, value_type, an alias for std::pair<const Key, value>, will have its constructor called with the arguments passed by const reference. There's a potential loss of efficiency from the pass-by-value in make_pair versus pass-by-reference, which could in theory have a noticeable impact on your program.
Another issue to be worried about with make_pair is that make_pair will usually create a pair of type std::pair<Key, Value> versus the std::pair<const Key, Value> needed inside the map. This means that there might be another unnecessary copy being made, this time of the pair to get the conversion working correctly.
In short, using make_pair might cause two completely unnecessary copies of the key and value to get made, while using the value_type constructor has none.