forgot the things

pull/2687/head
Bailey Chittle 3 years ago
parent 7e2a93191a
commit f09a0922eb

3
.gitignore vendored

@ -87,6 +87,9 @@ cmake-build-*/
*.user
*.sln
# vscode
.vscode
# macos
*.DS_store
*.xcodeproj/

@ -1,19 +0,0 @@
{
"files.associations": {
"span": "cpp",
"string": "cpp",
"xstring": "cpp",
"array": "cpp",
"chrono": "cpp",
"filesystem": "cpp",
"format": "cpp",
"forward_list": "cpp",
"initializer_list": "cpp",
"list": "cpp",
"vector": "cpp",
"xhash": "cpp",
"xtree": "cpp",
"xutility": "cpp",
"xtr1common": "cpp"
}
}

@ -84,6 +84,7 @@ public:
logger &operator=(logger other) SPDLOG_NOEXCEPT;
void swap(spdlog::logger &other) SPDLOG_NOEXCEPT;
template <typename T>
void log(level::level_enum lvl, const T &msg, details::attr attr)
{
log(source_loc{}, lvl, msg, attr);

Loading…
Cancel
Save