Add explicit keywords.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42747 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2007-10-08 15:08:41 +00:00
parent 5477f8593d
commit cdf2b3b2f8
6 changed files with 18 additions and 16 deletions

View File

@@ -198,7 +198,7 @@ class ArchiveMember {
private: private:
/// Used internally by the Archive class to construct an ArchiveMember. /// Used internally by the Archive class to construct an ArchiveMember.
/// The contents of the ArchiveMember are filled out by the Archive class. /// The contents of the ArchiveMember are filled out by the Archive class.
ArchiveMember(Archive *PAR); explicit ArchiveMember(Archive *PAR);
// So Archive can construct an ArchiveMember // So Archive can construct an ArchiveMember
friend class llvm::Archive; friend class llvm::Archive;
@@ -461,7 +461,7 @@ class Archive {
protected: protected:
/// @brief Construct an Archive for \p filename and optionally map it /// @brief Construct an Archive for \p filename and optionally map it
/// into memory. /// into memory.
Archive(const sys::Path& filename); explicit Archive(const sys::Path& filename);
/// @param data The symbol table data to be parsed /// @param data The symbol table data to be parsed
/// @param len The length of the symbol table data /// @param len The length of the symbol table data

View File

@@ -91,8 +91,8 @@ public:
Char6 = 4 // A 6-bit fixed field which maps to [a-zA-Z0-9._]. Char6 = 4 // A 6-bit fixed field which maps to [a-zA-Z0-9._].
}; };
BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {} explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
BitCodeAbbrevOp(Encoding E, uint64_t Data = 0) explicit BitCodeAbbrevOp(Encoding E, uint64_t Data = 0)
: Val(Data), IsLiteral(false), Enc(E) {} : Val(Data), IsLiteral(false), Enc(E) {}
bool isLiteral() const { return IsLiteral; } bool isLiteral() const { return IsLiteral; }

View File

@@ -59,7 +59,7 @@ class BitstreamWriter {
std::vector<BlockInfo> BlockInfoRecords; std::vector<BlockInfo> BlockInfoRecords;
public: public:
BitstreamWriter(std::vector<unsigned char> &O) explicit BitstreamWriter(std::vector<unsigned char> &O)
: Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {} : Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {}
~BitstreamWriter() { ~BitstreamWriter() {

View File

@@ -838,7 +838,7 @@ public:
// One option... // One option...
template<class M0t> template<class M0t>
opt(const M0t &M0) : Option(Optional | NotHidden) { explicit opt(const M0t &M0) : Option(Optional | NotHidden) {
apply(M0, this); apply(M0, this);
done(); done();
} }
@@ -998,7 +998,7 @@ public:
// One option... // One option...
template<class M0t> template<class M0t>
list(const M0t &M0) : Option(ZeroOrMore | NotHidden) { explicit list(const M0t &M0) : Option(ZeroOrMore | NotHidden) {
apply(M0, this); apply(M0, this);
done(); done();
} }
@@ -1184,7 +1184,7 @@ public:
// One option... // One option...
template<class M0t> template<class M0t>
bits(const M0t &M0) : Option(ZeroOrMore | NotHidden) { explicit bits(const M0t &M0) : Option(ZeroOrMore | NotHidden) {
apply(M0, this); apply(M0, this);
done(); done();
} }
@@ -1277,7 +1277,7 @@ public:
// One option... // One option...
template<class M0t> template<class M0t>
alias(const M0t &M0) : Option(Optional | Hidden), AliasFor(0) { explicit alias(const M0t &M0) : Option(Optional | Hidden), AliasFor(0) {
apply(M0, this); apply(M0, this);
done(); done();
} }
@@ -1306,7 +1306,7 @@ public:
// aliasfor - Modifier to set the option an alias aliases. // aliasfor - Modifier to set the option an alias aliases.
struct aliasopt { struct aliasopt {
Option &Opt; Option &Opt;
aliasopt(Option &O) : Opt(O) {} explicit aliasopt(Option &O) : Opt(O) {}
void apply(alias &A) const { A.setAliasFor(Opt); } void apply(alias &A) const { A.setAliasFor(Opt); }
}; };

View File

@@ -73,7 +73,7 @@ struct SubtargetInfoKV {
class SubtargetFeatures { class SubtargetFeatures {
std::vector<std::string> Features; // Subtarget features as a vector std::vector<std::string> Features; // Subtarget features as a vector
public: public:
SubtargetFeatures(const std::string &Initial = std::string()); explicit SubtargetFeatures(const std::string &Initial = std::string());
/// Features string accessors. /// Features string accessors.
std::string getString() const; std::string getString() const;

View File

@@ -65,7 +65,7 @@ class VISIBILITY_HIDDEN BBPassManager : public PMDataManager,
public: public:
static char ID; static char ID;
BBPassManager(int Depth) explicit BBPassManager(int Depth)
: PMDataManager(Depth), FunctionPass((intptr_t)&ID) {} : PMDataManager(Depth), FunctionPass((intptr_t)&ID) {}
/// Execute all of the passes scheduled for execution. Keep track of /// Execute all of the passes scheduled for execution. Keep track of
@@ -121,7 +121,7 @@ class FunctionPassManagerImpl : public Pass,
public PMTopLevelManager { public PMTopLevelManager {
public: public:
static char ID; static char ID;
FunctionPassManagerImpl(int Depth) : explicit FunctionPassManagerImpl(int Depth) :
Pass((intptr_t)&ID), PMDataManager(Depth), Pass((intptr_t)&ID), PMDataManager(Depth),
PMTopLevelManager(TLM_Function) { } PMTopLevelManager(TLM_Function) { }
@@ -185,7 +185,8 @@ class MPPassManager : public Pass, public PMDataManager {
public: public:
static char ID; static char ID;
MPPassManager(int Depth) : Pass((intptr_t)&ID), PMDataManager(Depth) { } explicit MPPassManager(int Depth) :
Pass((intptr_t)&ID), PMDataManager(Depth) { }
// Delete on the fly managers. // Delete on the fly managers.
virtual ~MPPassManager() { virtual ~MPPassManager() {
@@ -260,8 +261,9 @@ class PassManagerImpl : public Pass,
public: public:
static char ID; static char ID;
PassManagerImpl(int Depth) : Pass((intptr_t)&ID), PMDataManager(Depth), explicit PassManagerImpl(int Depth) :
PMTopLevelManager(TLM_Pass) { } Pass((intptr_t)&ID), PMDataManager(Depth),
PMTopLevelManager(TLM_Pass) { }
/// add - Add a pass to the queue of passes to run. This passes ownership of /// add - Add a pass to the queue of passes to run. This passes ownership of
/// the Pass to the PassManager. When the PassManager is destroyed, the pass /// the Pass to the PassManager. When the PassManager is destroyed, the pass