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
8ce30c6a
Commit
8ce30c6a
authored
Aug 29, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Chrono: convert SongTime to SignedSongTime implicitly
parent
9fcaff74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
Chrono.hxx
src/Chrono.hxx
+5
-0
No files found.
src/Chrono.hxx
View file @
8ce30c6a
...
@@ -110,6 +110,11 @@ public:
...
@@ -110,6 +110,11 @@ public:
template
<
typename
T
>
template
<
typename
T
>
explicit
constexpr
SignedSongTime
(
T
t
)
:
Base
(
t
)
{}
explicit
constexpr
SignedSongTime
(
T
t
)
:
Base
(
t
)
{}
/**
* Allow implicit conversion from SongTime to SignedSongTime.
*/
constexpr
SignedSongTime
(
SongTime
t
)
:
Base
(
t
)
{}
static
constexpr
SignedSongTime
zero
()
{
static
constexpr
SignedSongTime
zero
()
{
return
SignedSongTime
(
Base
::
zero
());
return
SignedSongTime
(
Base
::
zero
());
}
}
...
...
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