Fix #326 Arch Compile Issue "copy_n is not a member of 'std';" (#327)

added ```#include <algorithm>``` to Common.h, needed for "copy_n"
This commit is contained in:
Lion 2024-05-24 23:01:48 +02:00 committed by GitHub
commit 93192fd9b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,6 +18,7 @@
#pragma once
#include <algorithm>
#include <array>
#include <atomic>
#include <cstring>