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

View File

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