From 39a65056daa95d18fafc91d33a56d21c327002e6 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sat, 25 Jan 2020 01:24:59 +0700 Subject: csn1: get rid of C++ specific code, compile with GCC The implementation of CSN.1 codec was taken from Wireshark, where it's implemented in pure C. For some reason it was mixed with C++ specific features, mostly using references in parameter declaration. Not sure what are the benefits. Change-Id: I56d8b7fbd2f9f4e0bdd6b09d0366fe7eb7aa327a --- tests/rlcmac/RLCMACTest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/rlcmac/RLCMACTest.cpp b/tests/rlcmac/RLCMACTest.cpp index 0cc3347b..a8d62170 100644 --- a/tests/rlcmac/RLCMACTest.cpp +++ b/tests/rlcmac/RLCMACTest.cpp @@ -24,7 +24,6 @@ #include #include #include -#include "csn1.h" #include "gsm_rlcmac.h" #include "gprs_rlcmac.h" #include "decoding.h" @@ -37,6 +36,8 @@ extern const struct log_info gprs_log_info; #include #include #include + +#include "csn1.h" } using namespace std; -- cgit v1.2.3