Replace std::map<K, V*> with std::map<K, std::unique_ptr<V>> to handle ownership...
authorCraig Topper <craig.topper@gmail.com>
Thu, 11 Dec 2014 05:25:30 +0000 (05:25 +0000)
committerCraig Topper <craig.topper@gmail.com>
Thu, 11 Dec 2014 05:25:30 +0000 (05:25 +0000)
commit50083146f072b5f2bb6f614c2000b7244168101e
tree6c1e36c8e789cdec210f0b462abf54b0d4588f44
parent0aac0703f89a07b0d32733ba360341d4cea621b8
Replace std::map<K, V*> with std::map<K, std::unique_ptr<V>> to handle ownership and deletion of the values.

Ideally we would store the MultiClasses by value directly in the maps, but I had some trouble with that before and this at least fixes the leak.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223997 91177308-0d34-0410-b5e6-96231b3b80d8
lib/TableGen/TGParser.cpp
lib/TableGen/TGParser.h