diff options
Diffstat (limited to 'src/mongo/logger/tee.h')
-rw-r--r-- | src/mongo/logger/tee.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mongo/logger/tee.h b/src/mongo/logger/tee.h index e51d42b6458..e96fb2e1824 100644 --- a/src/mongo/logger/tee.h +++ b/src/mongo/logger/tee.h @@ -32,16 +32,16 @@ namespace mongo { namespace logger { - class Tee { - public: - virtual ~Tee() {} +class Tee { +public: + virtual ~Tee() {} - /** - * Implementations of Tee::write must handle their own synchronization. Callers may assume - * it is safe to call this method at any time from any thread. - */ - virtual void write(const std::string& str) = 0; - }; + /** + * Implementations of Tee::write must handle their own synchronization. Callers may assume + * it is safe to call this method at any time from any thread. + */ + virtual void write(const std::string& str) = 0; +}; } // namespace logger } // namespace mongo |