Skip to content

Commit 02aedc3

Browse files
committed
Revert "Prevent symbol clash in case boost/cstdint.h is already included"
This reverts commit 38c6b8f.
1 parent 38c6b8f commit 02aedc3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/lsl_continuous_resolver_c.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1+
#include "../include/lsl_c.h"
12
#include "resolver_impl.h"
23
#include "api_config.h"
34
#include <iostream>
45

56
extern "C" {
6-
#include "../include/lsl_c.h"
77
// === implementation of the continuous_resolver class ===
88

99
using namespace lsl;

src/lsl_freefuncs_c.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#include "../include/lsl_c.h"
12
#include "common.h"
23
#include "resolver_impl.h"
34
#include "api_config.h"
@@ -12,7 +13,6 @@ using std::string;
1213
using std::vector;
1314

1415
extern "C" {
15-
#include "../include/lsl_c.h"
1616
/**
1717
* Get the protocol version.
1818
*/

src/lsl_inlet_c.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
#include "../include/lsl_c.h"
12
#include "stream_inlet_impl.h"
23

34
extern "C" {
4-
#include "../include/lsl_c.h"
55
// === implementation of the stream_inlet class ===
66

77
using namespace lsl;

src/lsl_outlet_c.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
#include "../include/lsl_c.h"
12
#include "stream_outlet_impl.h"
23

34

45
extern "C" {
5-
#include "../include/lsl_c.h"
66
// === implementation of the lsl_outlet functions of the C API ===
77

88
using namespace lsl;

0 commit comments

Comments
 (0)