diff options
author | Dan Gohman <gohman@apple.com> | 2007-03-23 18:44:11 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-03-23 18:44:11 +0000 |
commit | 423c2260f95883f7c84ac962e58ac66c3a11efac (patch) | |
tree | a1fe402ee6cad918ac07120290cef96670d64a63 /include/llvm/BasicBlock.h | |
parent | b819a2b5fef660298b4f38ce951dd7f679f66b4f (diff) |
Add the 'explicit' keyword to several constructors that accept one
argument that don't appear intended as implicit-conversion operators.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35280 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/BasicBlock.h')
-rw-r--r-- | include/llvm/BasicBlock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index 0ca8eae1a3..e15a894591 100644 --- a/include/llvm/BasicBlock.h +++ b/include/llvm/BasicBlock.h @@ -70,8 +70,8 @@ public: /// is automatically inserted at either the end of the function (if /// InsertBefore is null), or before the specified basic block. /// - BasicBlock(const std::string &Name = "", Function *Parent = 0, - BasicBlock *InsertBefore = 0); + explicit BasicBlock(const std::string &Name = "", Function *Parent = 0, + BasicBlock *InsertBefore = 0); ~BasicBlock(); /// getParent - Return the enclosing method, or null if none |