summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2022-02-06 17:55:34 -0500
committer AJR <ajrhacker@users.noreply.github.com>2022-02-06 17:55:34 -0500
commit22e7beb2fc705139625e3c036c256c6f19cd1c2c (patch)
tree0222996f9e3a394439973673ade629763020a5a3
parent969f9d3947ba16d6d8a2d5d2f075536184e61a56 (diff)
flac.cpp: Add some missing standard headers
-rw-r--r--src/lib/util/flac.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/util/flac.cpp b/src/lib/util/flac.cpp
index 9fb0c4c46dc..b0d5b9fa565 100644
--- a/src/lib/util/flac.cpp
+++ b/src/lib/util/flac.cpp
@@ -2,7 +2,7 @@
// copyright-holders:Aaron Giles
/***************************************************************************
- flac.c
+ flac.cpp
FLAC compression wrappers
@@ -12,8 +12,10 @@
#include "ioprocs.h"
+#include <algorithm>
#include <cassert>
#include <cstring>
+#include <iterator>
#include <new>