mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-26 00:46:59 +00:00
Update changelog
This commit is contained in:
parent
e820631689
commit
54a4c213ec
@ -29,6 +29,8 @@ SPDX-FileCopyrightText: 2011-2020 Carles Fernandez-Prades <carles.fernandez@cttc
|
||||
- Improved usage of smart pointers to better express ownership.
|
||||
- Add definition of std::make_unique for buildings with C++11, and make use of
|
||||
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`
|
||||
to `-fno-common`, causing an error due to multiple defined lambda functions).
|
||||
- Fixed warnings risen by GCC 10 and Clang 10.
|
||||
|
@ -67,10 +67,10 @@ private:
|
||||
void set_survivor_branch_metric_of_next_state(int next_state, float metric);
|
||||
|
||||
private:
|
||||
int t;
|
||||
std::vector<float> v_metric;
|
||||
std::vector<int> state;
|
||||
std::vector<int> v_bit;
|
||||
std::vector<float> v_metric;
|
||||
int t;
|
||||
int refcount;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user