wifi: (fixes #308) Remove typedef in definition of struct RuSpec

This commit is contained in:
Stefano Avallone
2021-02-06 22:02:41 +01:00
parent 457142a618
commit 386127f8da

View File

@@ -61,12 +61,12 @@ public:
* subfield of the User Info field of Trigger frames. Note that primary80MHz
* must be true if ruType is RU_2x996_TONE.
*/
typedef struct
struct RuSpec
{
bool primary80MHz; //!< true if the RU is allocated in the primary 80MHz channel
RuType ruType; //!< RU type
std::size_t index; //!< index (starting at 1)
} RuSpec;
};
/**