Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
188afe20
Commit
188afe20
authored
Sep 28, 2019
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issue #1249
parent
1add9c9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
common.h
include/spdlog/common.h
+1
-2
No files found.
include/spdlog/common.h
View file @
188afe20
...
...
@@ -101,14 +101,13 @@ using sink_ptr = std::shared_ptr<sinks::sink>;
using
sinks_init_list
=
std
::
initializer_list
<
sink_ptr
>
;
using
err_handler
=
std
::
function
<
void
(
const
std
::
string
&
err_msg
)
>
;
using
string_view_t
=
fmt
::
basic_string_view
<
char
>
;
using
wstring_view_t
=
fmt
::
basic_string_view
<
wchar_t
>
;
using
memory_buf_t
=
fmt
::
basic_memory_buffer
<
char
,
250
>
;
#ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT
#ifndef _WIN32
#error SPDLOG_WCHAR_TO_UTF8_SUPPORT only supported on windows
#else
using
wstring_view_t
=
fmt
::
basic_string_view
<
wchar_t
>
;
template
<
typename
T
>
struct
is_convertible_to_wstring_view
:
std
::
is_convertible
<
T
,
wstring_view_t
>
{};
...
...
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