Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
spdlog
Commits
616866fc
Unverified
Commit
616866fc
authored
May 30, 2021
by
Gabi Melman
Committed by
GitHub
May 30, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1958 from mlund/v1.x
Allow compilation with nvc++ (and possibly PGI)
parents
6ba5ab6d
faf06bcf
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
6 deletions
+14
-6
include/spdlog/common.h
include/spdlog/common.h
+1
-0
include/spdlog/sinks/stdout_color_sinks-inl.h
include/spdlog/sinks/stdout_color_sinks-inl.h
+2
-1
src/async.cpp
src/async.cpp
+2
-1
src/cfg.cpp
src/cfg.cpp
+2
-1
src/color_sinks.cpp
src/color_sinks.cpp
+1
-0
src/file_sinks.cpp
src/file_sinks.cpp
+2
-1
src/spdlog.cpp
src/spdlog.cpp
+2
-1
src/stdout_sinks.cpp
src/stdout_sinks.cpp
+2
-1
No files found.
include/spdlog/common.h
View file @
616866fc
...
@@ -275,3 +275,4 @@ std::unique_ptr<T> make_unique(Args &&...args)
...
@@ -275,3 +275,4 @@ std::unique_ptr<T> make_unique(Args &&...args)
#ifdef SPDLOG_HEADER_ONLY
#ifdef SPDLOG_HEADER_ONLY
#include "common-inl.h"
#include "common-inl.h"
#endif
#endif
include/spdlog/sinks/stdout_color_sinks-inl.h
View file @
616866fc
...
@@ -36,3 +36,4 @@ SPDLOG_INLINE std::shared_ptr<logger> stderr_color_st(const std::string &logger_
...
@@ -36,3 +36,4 @@ SPDLOG_INLINE std::shared_ptr<logger> stderr_color_st(const std::string &logger_
return
Factory
::
template
create
<
sinks
::
stderr_color_sink_st
>(
logger_name
,
mode
);
return
Factory
::
template
create
<
sinks
::
stderr_color_sink_st
>(
logger_name
,
mode
);
}
}
}
// namespace spdlog
}
// namespace spdlog
src/async.cpp
View file @
616866fc
...
@@ -11,3 +11,4 @@
...
@@ -11,3 +11,4 @@
#include <spdlog/details/thread_pool-inl.h>
#include <spdlog/details/thread_pool-inl.h>
template
class
SPDLOG_API
spdlog
::
details
::
mpmc_blocking_queue
<
spdlog
::
details
::
async_msg
>;
template
class
SPDLOG_API
spdlog
::
details
::
mpmc_blocking_queue
<
spdlog
::
details
::
async_msg
>;
src/cfg.cpp
View file @
616866fc
...
@@ -6,3 +6,4 @@
...
@@ -6,3 +6,4 @@
#endif
#endif
#include <spdlog/cfg/helpers-inl.h>
#include <spdlog/cfg/helpers-inl.h>
src/color_sinks.cpp
View file @
616866fc
...
@@ -49,3 +49,4 @@ template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stderr_color_mt<spdl
...
@@ -49,3 +49,4 @@ template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stderr_color_mt<spdl
const
std
::
string
&
logger_name
,
color_mode
mode
);
const
std
::
string
&
logger_name
,
color_mode
mode
);
template
SPDLOG_API
std
::
shared_ptr
<
spdlog
::
logger
>
spdlog
::
stderr_color_st
<
spdlog
::
async_factory
>
(
template
SPDLOG_API
std
::
shared_ptr
<
spdlog
::
logger
>
spdlog
::
stderr_color_st
<
spdlog
::
async_factory
>
(
const
std
::
string
&
logger_name
,
color_mode
mode
);
const
std
::
string
&
logger_name
,
color_mode
mode
);
src/file_sinks.cpp
View file @
616866fc
...
@@ -18,3 +18,4 @@ template class SPDLOG_API spdlog::sinks::basic_file_sink<spdlog::details::null_m
...
@@ -18,3 +18,4 @@ template class SPDLOG_API spdlog::sinks::basic_file_sink<spdlog::details::null_m
#include <spdlog/sinks/rotating_file_sink-inl.h>
#include <spdlog/sinks/rotating_file_sink-inl.h>
template
class
SPDLOG_API
spdlog
::
sinks
::
rotating_file_sink
<
std
::
mutex
>;
template
class
SPDLOG_API
spdlog
::
sinks
::
rotating_file_sink
<
std
::
mutex
>;
template
class
SPDLOG_API
spdlog
::
sinks
::
rotating_file_sink
<
spdlog
::
details
::
null_mutex
>;
template
class
SPDLOG_API
spdlog
::
sinks
::
rotating_file_sink
<
spdlog
::
details
::
null_mutex
>;
src/spdlog.cpp
View file @
616866fc
...
@@ -24,3 +24,4 @@
...
@@ -24,3 +24,4 @@
template
SPDLOG_API
spdlog
::
logger
::
logger
(
std
::
string
name
,
sinks_init_list
::
iterator
begin
,
sinks_init_list
::
iterator
end
);
template
SPDLOG_API
spdlog
::
logger
::
logger
(
std
::
string
name
,
sinks_init_list
::
iterator
begin
,
sinks_init_list
::
iterator
end
);
template
class
SPDLOG_API
spdlog
::
sinks
::
base_sink
<
std
::
mutex
>;
template
class
SPDLOG_API
spdlog
::
sinks
::
base_sink
<
std
::
mutex
>;
template
class
SPDLOG_API
spdlog
::
sinks
::
base_sink
<
spdlog
::
details
::
null_mutex
>;
template
class
SPDLOG_API
spdlog
::
sinks
::
base_sink
<
spdlog
::
details
::
null_mutex
>;
src/stdout_sinks.cpp
View file @
616866fc
...
@@ -27,3 +27,4 @@ template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stdout_logger_mt<spd
...
@@ -27,3 +27,4 @@ template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stdout_logger_mt<spd
template
SPDLOG_API
std
::
shared_ptr
<
spdlog
::
logger
>
spdlog
::
stdout_logger_st
<
spdlog
::
async_factory
>
(
const
std
::
string
&
logger_name
);
template
SPDLOG_API
std
::
shared_ptr
<
spdlog
::
logger
>
spdlog
::
stdout_logger_st
<
spdlog
::
async_factory
>
(
const
std
::
string
&
logger_name
);
template
SPDLOG_API
std
::
shared_ptr
<
spdlog
::
logger
>
spdlog
::
stderr_logger_mt
<
spdlog
::
async_factory
>
(
const
std
::
string
&
logger_name
);
template
SPDLOG_API
std
::
shared_ptr
<
spdlog
::
logger
>
spdlog
::
stderr_logger_mt
<
spdlog
::
async_factory
>
(
const
std
::
string
&
logger_name
);
template
SPDLOG_API
std
::
shared_ptr
<
spdlog
::
logger
>
spdlog
::
stderr_logger_st
<
spdlog
::
async_factory
>
(
const
std
::
string
&
logger_name
);
template
SPDLOG_API
std
::
shared_ptr
<
spdlog
::
logger
>
spdlog
::
stderr_logger_st
<
spdlog
::
async_factory
>
(
const
std
::
string
&
logger_name
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment