1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-27 20:24:26 +01:00

Fix build issues when disabling Dot11

Fixes #258
This commit is contained in:
Matias Fontanini
2017-10-18 06:40:51 -07:00
parent c439eccdf8
commit f4635a696e
5 changed files with 49 additions and 28 deletions

View File

@@ -27,8 +27,11 @@
*
*/
#include <cmath>
#include <tins/utils/radiotap_writer.h>
#ifdef TINS_HAVE_DOT11
#include <cmath>
#include <tins/utils/radiotap_parser.h>
#include <tins/exceptions.h>
@@ -167,3 +170,5 @@ void RadioTapWriter::update_paddings(const vector<uint8_t>& paddings, uint32_t o
} // Utils
} // Tins
#endif // TINS_HAVE_DOT11