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
486b6937
Unverified
Commit
486b6937
authored
Nov 28, 2018
by
Gabi Melman
Committed by
GitHub
Nov 28, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #929 from dpacbach/warnings-fix
Fix some minor warnings found with a recent clang version
parents
3eba3224
a6152eba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
common.h
include/spdlog/common.h
+1
-1
log_msg.h
include/spdlog/details/log_msg.h
+0
-1
No files found.
include/spdlog/common.h
View file @
486b6937
...
@@ -193,7 +193,7 @@ struct source_loc
...
@@ -193,7 +193,7 @@ struct source_loc
}
}
SPDLOG_CONSTEXPR
source_loc
(
const
char
*
filename
,
int
line
)
SPDLOG_CONSTEXPR
source_loc
(
const
char
*
filename
,
int
line
)
:
filename
(
filename
)
:
filename
(
filename
)
,
line
(
line
)
,
line
(
static_cast
<
uint32_t
>
(
line
)
)
{
{
}
}
...
...
include/spdlog/details/log_msg.h
View file @
486b6937
...
@@ -37,7 +37,6 @@ struct log_msg
...
@@ -37,7 +37,6 @@ struct log_msg
}
}
log_msg
(
const
log_msg
&
other
)
=
default
;
log_msg
(
const
log_msg
&
other
)
=
default
;
log_msg
&
operator
=
(
const
log_msg
&
other
)
=
default
;
const
std
::
string
*
logger_name
{
nullptr
};
const
std
::
string
*
logger_name
{
nullptr
};
level
::
level_enum
level
{
level
::
off
};
level
::
level_enum
level
{
level
::
off
};
...
...
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