mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 20:20:35 +00:00
Fix deprecated enum usage
This commit is contained in:
parent
447d8a5625
commit
eef5cadab0
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user