mirror of
https://github.com/reactos/CMake.git
synced 2025-02-08 12:58:46 +00:00
Merge topic 'cpacklog-string-cref'
542d9d5e cmCPackLog: pass std::string by const& Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !892
This commit is contained in:
commit
5b8ac116c3
@ -85,12 +85,12 @@ public:
|
||||
|
||||
//! Set the various prefixes for the logging. SetPrefix sets the generic
|
||||
// prefix that overwrittes missing ones.
|
||||
void SetPrefix(std::string pfx) { this->Prefix = pfx; }
|
||||
void SetOutputPrefix(std::string pfx) { this->OutputPrefix = pfx; }
|
||||
void SetVerbosePrefix(std::string pfx) { this->VerbosePrefix = pfx; }
|
||||
void SetDebugPrefix(std::string pfx) { this->DebugPrefix = pfx; }
|
||||
void SetWarningPrefix(std::string pfx) { this->WarningPrefix = pfx; }
|
||||
void SetErrorPrefix(std::string pfx) { this->ErrorPrefix = pfx; }
|
||||
void SetPrefix(std::string const& pfx) { this->Prefix = pfx; }
|
||||
void SetOutputPrefix(std::string const& pfx) { this->OutputPrefix = pfx; }
|
||||
void SetVerbosePrefix(std::string const& pfx) { this->VerbosePrefix = pfx; }
|
||||
void SetDebugPrefix(std::string const& pfx) { this->DebugPrefix = pfx; }
|
||||
void SetWarningPrefix(std::string const& pfx) { this->WarningPrefix = pfx; }
|
||||
void SetErrorPrefix(std::string const& pfx) { this->ErrorPrefix = pfx; }
|
||||
|
||||
private:
|
||||
bool Verbose;
|
||||
|
Loading…
x
Reference in New Issue
Block a user