From 0897811d16bbbeb7b9b4ce2bf46217c62c24c7b0 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Fri, 29 May 2020 09:46:30 +0200 Subject: [PATCH] Fix for GCC 4.9 --- src/algorithms/PVT/libs/rtcm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/PVT/libs/rtcm.h b/src/algorithms/PVT/libs/rtcm.h index dfbd42009..49b681b3e 100644 --- a/src/algorithms/PVT/libs/rtcm.h +++ b/src/algorithms/PVT/libs/rtcm.h @@ -506,8 +506,8 @@ private: static const std::size_t max_body_length = 1029; Rtcm_Message() - : body_length_(0) { + body_length_ = 0; } const char* data() const