]> git.mxchange.org Git - simgear.git/commitdiff
Oops, fixed ... :-)
authorcurt <curt>
Wed, 13 Dec 2000 19:30:57 +0000 (19:30 +0000)
committercurt <curt>
Wed, 13 Dec 2000 19:30:57 +0000 (19:30 +0000)
simgear/bucket/newbucket.cxx

index 658434f2cb32d9cde7982b24bf7a3521ca62d78a..e2b334fa54bd870cf6514e7f89e4957e3971d3c1 100644 (file)
@@ -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() {
 }