Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
e25a3d17
Unverified
Commit
e25a3d17
authored
Mar 15, 2020
by
Rosen Penev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove extra semicolon
Found with -Wextra-semi Signed-off-by:
Rosen Penev
<
rosenp@gmail.com
>
parent
b5d1a090
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Chrono.hxx
src/Chrono.hxx
+2
-2
AppendIter.hxx
src/lib/dbus/AppendIter.hxx
+1
-1
Mutex.hxx
src/thread/Mutex.hxx
+1
-1
No files found.
src/Chrono.hxx
View file @
e25a3d17
...
...
@@ -95,7 +95,7 @@ public:
constexpr
double
ToDoubleS
()
const
{
return
double
(
count
())
/
1000.
;
}
;
}
constexpr
bool
IsZero
()
const
{
return
count
()
==
0
;
...
...
@@ -199,7 +199,7 @@ public:
constexpr
double
ToDoubleS
()
const
{
return
double
(
count
())
/
1000.
;
}
;
}
constexpr
bool
IsZero
()
const
{
return
count
()
==
0
;
...
...
src/lib/dbus/AppendIter.hxx
View file @
e25a3d17
...
...
@@ -80,7 +80,7 @@ public:
throw
std
::
runtime_error
(
"dbus_message_iter_append_fixed_array() failed"
);
return
*
this
;
}
;
}
AppendMessageIter
&
AppendFixedArray
(
ConstBuffer
<
uint32_t
>
value
)
{
return
AppendFixedArray
(
DBUS_TYPE_UINT32
,
...
...
src/thread/Mutex.hxx
View file @
e25a3d17
...
...
@@ -53,7 +53,7 @@ class ScopeUnlock {
public
:
explicit
ScopeUnlock
(
Mutex
&
_mutex
)
noexcept
:
mutex
(
_mutex
)
{
mutex
.
unlock
();
}
;
}
~
ScopeUnlock
()
noexcept
{
mutex
.
lock
();
...
...
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