audio_core/buffer: Make const and non-const getter for samples consistent
This way proper const/non-const selection can occur.
This commit is contained in:
parent
99da6362c4
commit
b009bda67a
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ public:
|
|||
Buffer(Tag tag, std::vector<s16>&& samples) : tag{tag}, samples{std::move(samples)} {}
|
||||
|
||||
/// Returns the raw audio data for the buffer
|
||||
std::vector<s16>& Samples() {
|
||||
std::vector<s16>& GetSamples() {
|
||||
return samples;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue