1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-25 11:41:35 +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 <iostream>
#include <tins/utils/radiotap_parser.h>
#ifdef TINS_HAVE_DOT11
#include <iostream>
#include <tins/exceptions.h>
using std::vector;
@@ -331,3 +334,5 @@ void RadioTapParser::load_current_flags() {
} // Utils
} // Tins
#endif // TINS_HAVE_DOT11