Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix Xcode compiler warning "no new line at the end of file" #1916

Merged
merged 1 commit into from
Apr 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion include/spdlog/details/backtracer.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ class SPDLOG_API backtracer

#ifdef SPDLOG_HEADER_ONLY
#include "backtracer-inl.h"
#endif
#endif

3 changes: 2 additions & 1 deletion include/spdlog/details/synchronous_factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ struct synchronous_factory
return new_logger;
}
};
} // namespace spdlog
} // namespace spdlog

3 changes: 2 additions & 1 deletion include/spdlog/fmt/fmt.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@
#else // SPDLOG_FMT_EXTERNAL is defined - use external fmtlib
#include <fmt/core.h>
#include <fmt/format.h>
#endif
#endif

3 changes: 2 additions & 1 deletion include/spdlog/sinks/basic_file_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,5 @@ inline std::shared_ptr<logger> basic_logger_st(const std::string &logger_name, c

#ifdef SPDLOG_HEADER_ONLY
#include "basic_file_sink-inl.h"
#endif
#endif