Hide SinkMessage's copy constructor and assignment operator
Originally committed to SVN as r6601.
This commit is contained in:
parent
b32515da80
commit
0b9a21bf82
1 changed files with 4 additions and 1 deletions
|
@ -70,7 +70,10 @@ extern const char *Severity_ID;
|
|||
extern LogSink *log;
|
||||
|
||||
/// Container to hold a single message
|
||||
struct SinkMessage {
|
||||
class SinkMessage {
|
||||
SinkMessage(SinkMessage const&);
|
||||
SinkMessage& operator=(SinkMessage const&);
|
||||
public:
|
||||
/// @brief Constructor
|
||||
/// @param section Section info
|
||||
/// @param severity Severity
|
||||
|
|
Loading…
Reference in a new issue