diff options
author | Dan Gohman <gohman@apple.com> | 2008-01-29 11:36:12 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-01-29 11:36:12 +0000 |
commit | 1327f69d98a2cb527b275ffc93080cf31ddf6dc5 (patch) | |
tree | 3ead7a448048e2627c78dcc53fa45113d143ee96 /lib/VMCore | |
parent | 103e2d760f3fb81d426319389106a8aeb21a584d (diff) |
Add explicit keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46506 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 310fa7f006..94477bab25 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -57,10 +57,10 @@ public: /// @{ public: /// @brief Construct from a module - SlotMachine(const Module *M); + explicit SlotMachine(const Module *M); /// @brief Construct from a function, starting out in incorp state. - SlotMachine(const Function *F); + explicit SlotMachine(const Function *F); /// @} /// @name Accessors |