Skip to content
Snippets Groups Projects
Commit e980617a authored by g0dil's avatar g0dil
Browse files

Add missing svn:ignores

Typo fixes
parent e53fe744
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ namespace senf { ...@@ -133,7 +133,7 @@ namespace senf {
expression which will be placed after a streaming \c operator<< (like expression which will be placed after a streaming \c operator<< (like
<i>some-log-sttream</i> \c << <i>last-macro-arg</i>). <i>some-log-sttream</i> \c << <i>last-macro-arg</i>).
\code \code
BOOST_LOG((parameters...)("log message " << args << ...)); SENF_LOG((parameters...)("log message " << args << ...));
\endcode \endcode
\hideinitializer \hideinitializer
...@@ -147,7 +147,7 @@ namespace senf { ...@@ -147,7 +147,7 @@ namespace senf {
This macro is like SENF_LOG, however instead of writing a simple message, this macro allows This macro is like SENF_LOG, however instead of writing a simple message, this macro allows
to specify a complete block of code to be executed if the log message is enabled. to specify a complete block of code to be executed if the log message is enabled.
\code \code
BOOST_LOG_BLOCK((parameters...)({ SENF_LOG_BLOCK((parameters...)({
// arbitrary code using 'log' for logging // arbitrary code using 'log' for logging
log << "log message"; log << "log message";
})); }));
...@@ -166,7 +166,7 @@ namespace senf { ...@@ -166,7 +166,7 @@ namespace senf {
Sets the default log parameters for the current scope Sets the default log parameters for the current scope
\code \code
BOOST_LOG_DEFAULTS((parameters...)); SENF_LOG_DEFAULTS((parameters...));
\endcode \endcode
\hideinitializer \hideinitializer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment