1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-29 15:19:44 +02:00

Add missing include in AColor.cpp

Adds include for copy_n in AColor.cpp to fix issues with
compiling on some Linux-based systems.

Signed-off-by: akleja <storspov@gmail.com>
Reference-to: https://github.com/tenacityteam/tenacity/pull/663
This commit is contained in:
akleja 2021-10-12 09:37:35 +02:00 committed by GitHub
parent bee8ce7313
commit e1b9071d5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,7 @@ It is also a place to document colour usage policy in Audacity
#include "AColorResources.h"
#include <algorithm>
#include <wx/window.h>
#include <wx/colour.h>
#include <wx/dc.h>