mirror of
https://github.com/gabime/spdlog.git
synced 2025-11-16 09:28:56 +08:00
code formatting and clang tidy warnings fixes
This commit is contained in:
@@ -5,14 +5,14 @@
|
||||
//
|
||||
|
||||
#include "spdlog/details/null_mutex.h"
|
||||
#include "stdio.h"
|
||||
#include <cstdio>
|
||||
#include <mutex>
|
||||
|
||||
namespace spdlog {
|
||||
namespace details {
|
||||
struct console_stdout
|
||||
{
|
||||
static FILE *stream()
|
||||
static std::FILE *stream()
|
||||
{
|
||||
return stdout;
|
||||
}
|
||||
@@ -26,7 +26,7 @@ struct console_stdout
|
||||
|
||||
struct console_stderr
|
||||
{
|
||||
static FILE *stream()
|
||||
static std::FILE *stream()
|
||||
{
|
||||
return stderr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user