From db1880f23d1c11a07a3f13bb2a25e7ef20dfef93 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sat, 7 Jan 2012 05:26:47 +0000 Subject: [PATCH] fix compitation in Ubuntu git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@113 64b25241-fba3-4117-9849-534c7e92360d --- src/algorithms/PVT/libs/rinex_2_1_printer.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/algorithms/PVT/libs/rinex_2_1_printer.cc b/src/algorithms/PVT/libs/rinex_2_1_printer.cc index cc95f0e53..80fc88ade 100644 --- a/src/algorithms/PVT/libs/rinex_2_1_printer.cc +++ b/src/algorithms/PVT/libs/rinex_2_1_printer.cc @@ -555,7 +555,8 @@ void rinex_printer::Rinex2ObsHeader(std::ofstream& out, gps_navigation_message n line.clear(); line += rinex_printer::leftJustify("GNSS-SDR",20); // add flag and property line += rinex_printer::leftJustify("Software Receiver",20); // add flag and property - line += rinex_printer::leftJustify(google::VersionString(),20); // add flag and property + //line += rinex_printer::leftJustify(google::VersionString(),20); // add flag and property + line += rinex_printer::leftJustify("0.1",20); line += rinex_printer::leftJustify("REC # / TYPE / VERS",20); lengthCheck(line); out << line << std::endl;