1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-22 21:13:15 +00:00

Fix initialization order

This commit is contained in:
Carles Fernandez 2021-10-10 19:09:09 +02:00
parent aab8ef3b34
commit 0c4faf0f05
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -30,9 +30,9 @@
#include <sys/types.h> // for mode_t
Kml_Printer::Kml_Printer(const std::string& base_path) : positions_printed(false),
Kml_Printer::Kml_Printer(const std::string& base_path) : kml_base_path(base_path),
indent(" "),
kml_base_path(base_path)
positions_printed(false)
{
fs::path full_path(fs::current_path());
const fs::path p(kml_base_path);