From 4c3b4219fee6bd2b5e1c7b26cc7153929ee1d230 Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 13 Dec 2000 19:30:57 +0000 Subject: [PATCH] Oops, fixed ... :-) --- simgear/bucket/newbucket.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/simgear/bucket/newbucket.cxx b/simgear/bucket/newbucket.cxx index 658434f2..e2b334fa 100644 --- a/simgear/bucket/newbucket.cxx +++ b/simgear/bucket/newbucket.cxx @@ -42,13 +42,13 @@ SGBucket::SGBucket() { // constructor for specified location -inline SGBucket::SGBucket(const double dlon, const double dlat) { +SGBucket::SGBucket(const double dlon, const double dlat) { set_bucket(dlon, dlat); } // create an impossible bucket if false -inline SGBucket::SGBucket(const bool is_good) { +SGBucket::SGBucket(const bool is_good) { set_bucket(0.0, 0.0); if ( !is_good ) { lon = -1000; @@ -57,7 +57,7 @@ inline SGBucket::SGBucket(const bool is_good) { // Parse a unique scenery tile index and find the lon, lat, x, and y -inline SGBucket::SGBucket(const long int bindex) { +SGBucket::SGBucket(const long int bindex) { long int index = bindex; lon = index >> 14; @@ -76,7 +76,7 @@ inline SGBucket::SGBucket(const long int bindex) { // default destructor -inline SGBucket::~SGBucket() { +SGBucket::~SGBucket() { }