Skip to content

Commit 779dc0a

Browse files
committed
minor fix
1 parent 59aee68 commit 779dc0a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -540,10 +540,10 @@ if("Ninja" STREQUAL ${CMAKE_GENERATOR})
540540
endif()
541541

542542
# Add -Werror to C/C++ flags for newer compilers
543-
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0)
544-
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
545-
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
546-
endif()
543+
# if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0)
544+
# set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
545+
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
546+
# endif()
547547

548548
if(CMAKE_C_COMPILER_ID MATCHES "GNU")
549549
# Increase inlining limit to allow gcc compilation on e.g. RPi2

ngscope/src/dciLib/dci_decoder.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ void* dci_decoder_thread(void* p){
539539

540540
//printf("End of decoding decoder_idx:%d sfn:%d sf_idx:%d tti:%d\n",
541541
// dci_decoder->decoder_idx, sfn, sf_idx, sfn * 10 + sf_idx);
542-
srsran_phich_res_t phich_res;
542+
// srsran_phich_res_t phich_res;
543543
// if(dci_decoder_phich_decode(dci_decoder, tti, &dci_per_sub, &phich_res) && (phich_res.ack_value == 0) ){
544544
// if(ngscope_rnti_inside_dci_per_sub_ul(&dci_per_sub,targetRNTI) >= 0){
545545
// printf("Conflict we have both ul dci and ul ack!\n");

0 commit comments

Comments
 (0)