2 Commits

Author SHA1 Message Date
d9b051210b Release 1.10.1 2024-05-19 11:33:31 +09:00
3da23b58c9 Include library header <algorithm> in cli and opus.
* fixes fmang/opustags#69
2024-05-19 11:23:29 +09:00
4 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,11 @@
opustags changelog
==================
1.10.1 - 2024-05-19
-------------------
Fix a build error on recent systems.
1.10.0 - 2024-05-03
-------------------

View File

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11)
project(
opustags
VERSION 1.10.0
VERSION 1.10.1
LANGUAGES CXX
)

View File

@ -15,6 +15,7 @@
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include <algorithm>
static const char help_message[] =
PROJECT_NAME " version " PROJECT_VERSION

View File

@ -24,6 +24,7 @@
#include <opustags.h>
#include <string.h>
#include <algorithm>
ot::opus_tags ot::parse_tags(const ogg_packet& packet)
{