main/common: Log/append AVX/FMA to the Host CPU string if available and add AVX512 detection

Co-Authored-By: Morph <morph1984@users.noreply.github.com>
This commit is contained in:
FearlessTobi 2020-08-09 01:55:26 +02:00
parent 52fe6daa53
commit ddb4135dea
5 changed files with 23 additions and 3 deletions

View file

@ -55,8 +55,8 @@ public:
Field(FieldType type, std::string name, T value)
: name(std::move(name)), type(type), value(std::move(value)) {}
Field(const Field& other) = default;
Field& operator=(const Field& other) = default;
Field(const Field&) = default;
Field& operator=(const Field&) = default;
Field(Field&&) = default;
Field& operator=(Field&& other) = default;