diff options
-rw-r--r-- | llvm/include/llvm/ADT/ImmutableMap.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/ImmutableMap.h b/llvm/include/llvm/ADT/ImmutableMap.h index bbf34c566d8..ce0f698fcb8 100644 --- a/llvm/include/llvm/ADT/ImmutableMap.h +++ b/llvm/include/llvm/ADT/ImmutableMap.h @@ -76,7 +76,6 @@ public: /// should use a Factory object to create maps instead of directly /// invoking the constructor, but there are cases where make this /// constructor public is useful. - explicit ImmutableMap(TreeTy* R) : Root(R) {} explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {} class Factory { |