Skip to content

Commit

Permalink
Fix broken Github windows build, due to different rules for `[[deprec…
Browse files Browse the repository at this point in the history
…ated]]`.

  - ".\iamf/cli/wav_writer.h(74): error C3827: standard attribute [[deprecated]] may have either no arguments or one string literal describing the reason"

PiperOrigin-RevId: 715061479
  • Loading branch information
jwcullen committed Jan 14, 2025
1 parent fc78e50 commit fb86319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iamf/cli/wav_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class WavWriter : public SampleProcessorBase {
* padding.
* \return `absl::OkStatus()` on success. A specific status on failure.
*/
[[deprecated(("Use `SampleProcessorBase::PushFrame` instead."))]]
[[deprecated("Use `SampleProcessorBase::PushFrame` instead.")]]
absl::Status WritePcmSamples(const std::vector<uint8_t>& buffer);

/*!\brief Aborts the write process and deletes the wav file.*/
Expand Down

0 comments on commit fb86319

Please sign in to comment.