diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-23 12:12:04 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-23 12:12:04 +0200 |
commit | f29c9a5a0cdca0205f98d55ad20d1145295db126 (patch) | |
tree | b2b2e5df52175410707ad7d8d60d015736b4e10b /butl/diagnostics | |
parent | 06f409edcbf653aa008ac0383609f13624bce9f7 (diff) |
Minor changes
Diffstat (limited to 'butl/diagnostics')
-rw-r--r-- | butl/diagnostics | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/butl/diagnostics b/butl/diagnostics index 60e8538..da24c69 100644 --- a/butl/diagnostics +++ b/butl/diagnostics @@ -18,7 +18,11 @@ namespace butl { // Diagnostic facility base infrastructure. // - LIBBUTL_EXPORT extern std::ostream* diag_stream; // std::cerr by default. + + // Diagnostics destination stream (std::cerr by default). Note that its + // modification is not MT-safe. + // + LIBBUTL_EXPORT extern std::ostream* diag_stream; struct diag_record; template <typename> struct diag_prologue; |