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
2d873785
Commit
2d873785
authored
Dec 10, 2016
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
astyle
parent
fec467da
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
22 deletions
+22
-22
include/spdlog/details/os.h
include/spdlog/details/os.h
+15
-15
include/spdlog/details/pattern_formatter_impl.h
include/spdlog/details/pattern_formatter_impl.h
+1
-1
include/spdlog/fmt/bundled/format.h
include/spdlog/fmt/bundled/format.h
+6
-6
No files found.
include/spdlog/details/os.h
View file @
2d873785
include/spdlog/details/pattern_formatter_impl.h
View file @
2d873785
include/spdlog/fmt/bundled/format.h
View file @
2d873785
...
@@ -2647,15 +2647,15 @@ inline uint64_t make_type(const T &arg)
...
@@ -2647,15 +2647,15 @@ inline uint64_t make_type(const T &arg)
}
}
template
<
unsigned
N
,
bool
/*IsPacked*/
=
(
N
<
ArgList
::
MAX_PACKED_ARGS
)>
template
<
unsigned
N
,
bool
/*IsPacked*/
=
(
N
<
ArgList
::
MAX_PACKED_ARGS
)>
struct
ArgArray
;
struct
ArgArray
;
template
<
unsigned
N
>
template
<
unsigned
N
>
struct
ArgArray
<
N
,
true
/*IsPacked*/
>
struct
ArgArray
<
N
,
true
/*IsPacked*/
>
{
{
typedef
Value
Type
[
N
>
0
?
N
:
1
];
typedef
Value
Type
[
N
>
0
?
N
:
1
];
template
<
typename
Formatter
,
typename
T
>
template
<
typename
Formatter
,
typename
T
>
static
Value
make
(
const
T
&
value
)
static
Value
make
(
const
T
&
value
)
{
{
#ifdef __clang__
#ifdef __clang__
Value
result
=
MakeValue
<
Formatter
>
(
value
);
Value
result
=
MakeValue
<
Formatter
>
(
value
);
...
@@ -2667,7 +2667,7 @@ struct ArgArray<N, true/*IsPacked*/>
...
@@ -2667,7 +2667,7 @@ struct ArgArray<N, true/*IsPacked*/>
return
MakeValue
<
Formatter
>
(
value
);
return
MakeValue
<
Formatter
>
(
value
);
#endif
#endif
}
}
};
};
template
<
unsigned
N
>
template
<
unsigned
N
>
struct
ArgArray
<
N
,
false
/*IsPacked*/
>
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