1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-27 09:24:52 +00:00

Update changelog

This commit is contained in:
Carles Fernandez 2020-06-27 11:39:14 +02:00
parent e820631689
commit 54a4c213ec
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 4 additions and 2 deletions

View File

@ -29,6 +29,8 @@ SPDX-FileCopyrightText: 2011-2020 Carles Fernandez-Prades <carles.fernandez@cttc
- Improved usage of smart pointers to better express ownership. - Improved usage of smart pointers to better express ownership.
- Add definition of std::make_unique for buildings with C++11, and make use of - Add definition of std::make_unique for buildings with C++11, and make use of
it along the source code. it along the source code.
- Private members in headers have been sorted by type and size, minimizing
padding space in the stack and making the files more readable for humans.
- Fixed building with GCC 10 (gcc-10 and above flipped a default from `-fcommon` - Fixed building with GCC 10 (gcc-10 and above flipped a default from `-fcommon`
to `-fno-common`, causing an error due to multiple defined lambda functions). to `-fno-common`, causing an error due to multiple defined lambda functions).
- Fixed warnings risen by GCC 10 and Clang 10. - Fixed warnings risen by GCC 10 and Clang 10.

View File

@ -67,10 +67,10 @@ private:
void set_survivor_branch_metric_of_next_state(int next_state, float metric); void set_survivor_branch_metric_of_next_state(int next_state, float metric);
private: private:
int t; std::vector<float> v_metric;
std::vector<int> state; std::vector<int> state;
std::vector<int> v_bit; std::vector<int> v_bit;
std::vector<float> v_metric; int t;
int refcount; int refcount;
}; };