Skip to content

Commit

Permalink
Fixed issue gabime#959
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime committed Jan 17, 2019
1 parent 8cb1bc8 commit 23fdc0e
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion include/spdlog/sinks/android_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "spdlog/details/fmt_helper.h"
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/ansicolor_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "spdlog/details/console_globals.h"
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/basic_file_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "spdlog/details/file_helper.h"
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/daily_file_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "spdlog/details/file_helper.h"
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/dist_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "base_sink.h"
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/msvc_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#if defined(_WIN32)
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/null_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "spdlog/details/null_mutex.h"
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/ostream_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "spdlog/details/null_mutex.h"
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/rotating_file_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "spdlog/details/file_helper.h"
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/stdout_color_sinks.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#ifdef _WIN32
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/stdout_sinks.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "spdlog/details/console_globals.h"
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/syslog_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "spdlog/sinks/base_sink.h"
Expand Down
2 changes: 1 addition & 1 deletion include/spdlog/sinks/wincolor_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

#ifndef SPDLOG_H
#error "spdlog.h must be included before this file."
#include "spdlog/spdlog.h"
#endif

#include "spdlog/common.h"
Expand Down

0 comments on commit 23fdc0e

Please sign in to comment.