Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Heisch, Benjamin
APAL
Commits
558e41c6
Commit
558e41c6
authored
Aug 14, 2020
by
Benjamin Heisch
Browse files
Removed warning on gcc.
parent
be86b227
Pipeline
#19325
passed with stages
in 7 minutes and 1 second
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
include/base/Ports.hpp
View file @
558e41c6
...
...
@@ -16,9 +16,10 @@ class AudioChannel : public IAudioChannel
{
public:
inline
AudioChannel
(
std
::
string
_channelname
,
SpeakerPosition
_pos
)
:
channelname
(
_channelname
)
:
data
(
nullptr
)
,
channelname
(
_channelname
)
,
pos
(
_pos
)
,
data
(
nullptr
)
{}
// Geerbt ber IAudioChannel
inline
virtual
std
::
string_view
getName
()
override
...
...
@@ -35,7 +36,6 @@ public:
private:
float
*
data
;
std
::
string
channelname
;
SpeakerPosition
pos
;
};
...
...
Write
Preview
Supports
Markdown
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