flac.cpp: Add some missing standard headers

This commit is contained in:
AJR 2022-02-06 17:55:34 -05:00
parent 969f9d3947
commit 22e7beb2fc

View File

@ -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>