Skip to content
This repository has been archived by the owner on May 29, 2022. It is now read-only.

Commit

Permalink
fix for MS VC 11 2012
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Tolman committed Jan 20, 2016
1 parent fdea581 commit 862490e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/lib/FileHandling/RINEX/RinexClockHeader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,19 @@

#include <list>
#include <string>
#include <cstdlib>
#include "RinexClockHeader.hpp"
#include "RinexClockStream.hpp"
#include "StringUtils.hpp"
#include "SatID.hpp"
#include "FFStream.hpp"
#include "FFStreamError.hpp"

#ifdef _WIN32
#if (_MSC_VER == 1700)
#define strtoll _strtoi64
#endif
#endif

using namespace std;

Expand Down
1 change: 1 addition & 0 deletions core/lib/FileHandling/RINEX/RinexClockHeader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

#include <string>
#include <list>
#include "gpstkplatform.h"
#include "RinexClockBase.hpp"
#include "SatID.hpp"
#include "FFStream.hpp"
Expand Down

0 comments on commit 862490e

Please sign in to comment.