1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-27 23:43:16 +00:00

Fix deprecated enum usage

This commit is contained in:
Carles Fernandez 2020-05-28 23:27:36 +02:00
parent 447d8a5625
commit eef5cadab0
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -502,14 +502,8 @@ private:
class Rtcm_Message
{
public:
enum
{
header_length = 6
};
enum
{
max_body_length = 1029
};
static const std::size_t header_length = 6;
static const std::size_t max_body_length = 1029;
Rtcm_Message()
: body_length_(0)