Skip to content
Snippets Groups Projects
Commit d14cf727 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

hotfix: static const avoiding declared but not used error

parent 1854d6c7
No related branches found
No related tags found
2 merge requests!28release after RAL,!27After 2nd RAL submission
...@@ -8,10 +8,10 @@ ...@@ -8,10 +8,10 @@
namespace wolf { namespace wolf {
static char CLOCK_BIAS_KEY = 'T'; static const char CLOCK_BIAS_KEY = 'T';
static char CLOCK_BIAS_GPS_GLO_KEY = 'G'; static const char CLOCK_BIAS_GPS_GLO_KEY = 'G';
static char CLOCK_BIAS_GPS_GAL_KEY = 'E'; static const char CLOCK_BIAS_GPS_GAL_KEY = 'E';
static char CLOCK_BIAS_GPS_CMP_KEY = 'M'; static const char CLOCK_BIAS_GPS_CMP_KEY = 'M';
WOLF_STRUCT_PTR_TYPEDEFS(ParamsSensorGnss); WOLF_STRUCT_PTR_TYPEDEFS(ParamsSensorGnss);
WOLF_PTR_TYPEDEFS(SensorGnss); WOLF_PTR_TYPEDEFS(SensorGnss);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment