From aee49ff4da7a3f63c501c4324d845b5fe8421fde Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sat, 24 Dec 2016 16:45:17 +0100 Subject: [PATCH] Small change to make forward declarations possible. --- include/MUtils/CPUFeatures.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/MUtils/CPUFeatures.h b/include/MUtils/CPUFeatures.h index 9972a3c..9b894a0 100644 --- a/include/MUtils/CPUFeatures.h +++ b/include/MUtils/CPUFeatures.h @@ -59,9 +59,9 @@ namespace MUtils static const quint32 FLAG_AVX = 0x100U; ///< \brief CPU feature flag \details Indicates that the CPU supports the *AVX* instruction set extension /** - * \brief Struct to hold information about the CPU + * \brief Struct to hold information about the CPU. See `_cpu_info_t` for details! */ - typedef struct + typedef struct _cpu_info_t { quint32 family; ///< CPU *family* indicator, which specifies the processor "generation" to which the CPU belongs quint32 model; ///< CPU *model* indicator, which is used to distinguish processor "variants" within a generation