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
f5939f9e
Commit
f5939f9e
authored
Dec 01, 2017
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
astyle
parent
84e30752
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
example.cpp
example/example.cpp
+1
-1
file_helper.h
include/spdlog/details/file_helper.h
+0
-0
pattern_formatter_impl.h
include/spdlog/details/pattern_formatter_impl.h
+0
-0
format.h
include/spdlog/fmt/bundled/format.h
+4
-4
No files found.
example/example.cpp
View file @
f5939f9e
//
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
...
...
include/spdlog/details/file_helper.h
View file @
f5939f9e
include/spdlog/details/pattern_formatter_impl.h
View file @
f5939f9e
include/spdlog/fmt/bundled/format.h
View file @
f5939f9e
...
...
@@ -2618,15 +2618,15 @@ inline uint64_t make_type(const T &arg)
}
template
<
std
::
size_t
N
,
bool
/*IsPacked*/
=
(
N
<
ArgList
::
MAX_PACKED_ARGS
)
>
struct
ArgArray
;
struct
ArgArray
;
template
<
std
::
size_t
N
>
struct
ArgArray
<
N
,
true
/*IsPacked*/
>
{
typedef
Value
Type
[
N
>
0
?
N
:
1
];
template
<
typename
Formatter
,
typename
T
>
static
Value
make
(
const
T
&
value
)
template
<
typename
Formatter
,
typename
T
>
static
Value
make
(
const
T
&
value
)
{
#ifdef __clang__
Value
result
=
MakeValue
<
Formatter
>
(
value
);
...
...
@@ -2638,7 +2638,7 @@ struct ArgArray<N, true/*IsPacked*/>
return
MakeValue
<
Formatter
>
(
value
);
#endif
}
};
};
template
<
std
::
size_t
N
>
struct
ArgArray
<
N
,
false
/*IsPacked*/
>
...
...
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