diff options
author | bms <bms@FreeBSD.org> | 2007-09-05 15:19:37 +0800 |
---|---|---|
committer | bms <bms@FreeBSD.org> | 2007-09-05 15:19:37 +0800 |
commit | fedabf55f7c6c5ab681f83cb1134adb3cfc6121e (patch) | |
tree | c072092aab57d5a2a5d4363707d4140255a8ea43 /astro/gpstk | |
parent | 6a5e50f7837c7f52d4776e99be3d863abcd52c25 (diff) | |
download | freebsd-ports-gnome-fedabf55f7c6c5ab681f83cb1134adb3cfc6121e.tar.gz freebsd-ports-gnome-fedabf55f7c6c5ab681f83cb1134adb3cfc6121e.tar.zst freebsd-ports-gnome-fedabf55f7c6c5ab681f83cb1134adb3cfc6121e.zip |
Nuke old patches
Nudged by: linimon
Diffstat (limited to 'astro/gpstk')
-rw-r--r-- | astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp | 18 | ||||
-rw-r--r-- | astro/gpstk/files/patch-src-EpochClockModel.hpp | 20 | ||||
-rw-r--r-- | astro/gpstk/files/patch-src-MatrixImplementation.hpp | 24 |
3 files changed, 0 insertions, 62 deletions
diff --git a/astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp b/astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp deleted file mode 100644 index 625622c89655..000000000000 --- a/astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp +++ /dev/null @@ -1,18 +0,0 @@ ---- apps/ionosphere/VTECMap.hpp.orig Thu Jan 11 21:38:35 2007 -+++ apps/ionosphere/VTECMap.hpp Thu Jan 11 21:38:51 2007 -@@ -193,13 +193,13 @@ - /// Compute the obliquity at a given elevation - /// @param el elevation in degrees - /// @return obliquity factor -- double VTECMap::Obliquity(double el); -+ double Obliquity(double el); - - protected: - /// Allocate the grid array and fill it. - /// @param refStation reference station - /// @param factor : 1 for VTEC maps, 2 for MUF maps -- void VTECMap::reallyMakeGrid(Station& refStation, int factor) -+ void reallyMakeGrid(Station& refStation, int factor) - throw(Exception); - - /// Compute one grid value, using all the data. Called by ComputeMap. diff --git a/astro/gpstk/files/patch-src-EpochClockModel.hpp b/astro/gpstk/files/patch-src-EpochClockModel.hpp deleted file mode 100644 index 714308057750..000000000000 --- a/astro/gpstk/files/patch-src-EpochClockModel.hpp +++ /dev/null @@ -1,20 +0,0 @@ ---- src/EpochClockModel.hpp.orig Thu Jan 11 21:39:06 2007 -+++ src/EpochClockModel.hpp Thu Jan 11 21:39:26 2007 -@@ -67,7 +67,7 @@ - PRNMode mode = ALWAYS) - :ObsClockModel(sigma, elmask, mode){} - -- virtual double EpochClockModel::getOffset(const gpstk::DayTime& t) const -+ virtual double getOffset(const gpstk::DayTime& t) const - throw(gpstk::InvalidArgumentException) - { - if (t!=time) -@@ -92,7 +92,7 @@ - - // An unchecked accessor for programs that don't need the generic - // interface -- double EpochClockModel::getOffset() const -+ double getOffset() const - throw() {return clkc;}; - - bool isOffsetValid() const diff --git a/astro/gpstk/files/patch-src-MatrixImplementation.hpp b/astro/gpstk/files/patch-src-MatrixImplementation.hpp deleted file mode 100644 index 27cda0b1d923..000000000000 --- a/astro/gpstk/files/patch-src-MatrixImplementation.hpp +++ /dev/null @@ -1,24 +0,0 @@ ---- src/MatrixImplementation.hpp.orig Thu Jan 11 21:31:51 2007 -+++ src/MatrixImplementation.hpp Thu Jan 11 21:33:18 2007 -@@ -37,18 +37,18 @@ - //@{ - - template <class T> -- Matrix<T>::Matrix<T>() -+ Matrix<T>::Matrix() - : v((size_t)0), r(0), c(0), s(0) - {} - - - template <class T> -- Matrix<T>::Matrix<T>(size_t rows, size_t cols) -+ Matrix<T>::Matrix(size_t rows, size_t cols) - : v(rows * cols), r(rows), c(cols), s(rows * cols) - {} - - template <class T> -- Matrix<T>::Matrix<T>(size_t rows, size_t cols, -+ Matrix<T>::Matrix(size_t rows, size_t cols, - T initialValue) - : v(rows * cols, initialValue), r(rows), c(cols), s(rows * cols) - {} |