diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-03 00:04:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-03 23:25:19 +0200 |
| commit | d311043bf3c1e3e7f41b314f7ab7c91ed7e5aa7f (patch) | |
| tree | ab41f58144bda078f96ce23f6328bd36cbd18dc6 /src/lib/log.cc | |
| parent | 8c39f950ec8f8b3cf4d258279ab499d7e71dafc8 (diff) | |
C++11 and whitespace cleanups.
Diffstat (limited to 'src/lib/log.cc')
| -rw-r--r-- | src/lib/log.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/log.cc b/src/lib/log.cc index 97b649893..aae492faf 100644 --- a/src/lib/log.cc +++ b/src/lib/log.cc @@ -24,9 +24,9 @@ */ -#include "log.h" -#include "cross.h" #include "config.h" +#include "cross.h" +#include "log.h" #include "string_log_entry.h" #include <time.h> #include <cstdio> @@ -34,10 +34,10 @@ #include "i18n.h" -using std::string; using std::cout; -using std::shared_ptr; using std::make_shared; +using std::shared_ptr; +using std::string; Log::Log () |
