Skip to content

Commit 23fdc0e

Browse files
committed
Fixed issue #959
1 parent 8cb1bc8 commit 23fdc0e

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

include/spdlog/sinks/android_sink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
#ifndef SPDLOG_H
9-
#error "spdlog.h must be included before this file."
9+
#include "spdlog/spdlog.h"
1010
#endif
1111

1212
#include "spdlog/details/fmt_helper.h"

include/spdlog/sinks/ansicolor_sink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
#ifndef SPDLOG_H
9-
#error "spdlog.h must be included before this file."
9+
#include "spdlog/spdlog.h"
1010
#endif
1111

1212
#include "spdlog/details/console_globals.h"

include/spdlog/sinks/basic_file_sink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
#ifndef SPDLOG_H
9-
#error "spdlog.h must be included before this file."
9+
#include "spdlog/spdlog.h"
1010
#endif
1111

1212
#include "spdlog/details/file_helper.h"

include/spdlog/sinks/daily_file_sink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
#ifndef SPDLOG_H
9-
#error "spdlog.h must be included before this file."
9+
#include "spdlog/spdlog.h"
1010
#endif
1111

1212
#include "spdlog/details/file_helper.h"

include/spdlog/sinks/dist_sink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
#ifndef SPDLOG_H
9-
#error "spdlog.h must be included before this file."
9+
#include "spdlog/spdlog.h"
1010
#endif
1111

1212
#include "base_sink.h"

include/spdlog/sinks/msvc_sink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
#ifndef SPDLOG_H
9-
#error "spdlog.h must be included before this file."
9+
#include "spdlog/spdlog.h"
1010
#endif
1111

1212
#if defined(_WIN32)

include/spdlog/sinks/null_sink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
#ifndef SPDLOG_H
9-
#error "spdlog.h must be included before this file."
9+
#include "spdlog/spdlog.h"
1010
#endif
1111

1212
#include "spdlog/details/null_mutex.h"

include/spdlog/sinks/ostream_sink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
#ifndef SPDLOG_H
9-
#error "spdlog.h must be included before this file."
9+
#include "spdlog/spdlog.h"
1010
#endif
1111

1212
#include "spdlog/details/null_mutex.h"

include/spdlog/sinks/rotating_file_sink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
#ifndef SPDLOG_H
9-
#error "spdlog.h must be included before this file."
9+
#include "spdlog/spdlog.h"
1010
#endif
1111

1212
#include "spdlog/details/file_helper.h"

include/spdlog/sinks/stdout_color_sinks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
#ifndef SPDLOG_H
9-
#error "spdlog.h must be included before this file."
9+
#include "spdlog/spdlog.h"
1010
#endif
1111

1212
#ifdef _WIN32

0 commit comments

Comments
 (0)