]> git.mxchange.org Git - simgear.git/commitdiff
More whitespace fixes.
authorJames Turner <zakalawe@mac.com>
Sun, 22 Nov 2015 22:40:07 +0000 (22:40 +0000)
committerJames Turner <zakalawe@mac.com>
Sun, 22 Nov 2015 23:53:46 +0000 (23:53 +0000)
simgear/io/HTTPRequest.cxx
simgear/io/test_HTTP.cxx

index b9466ebf36d11a3938365f9f035e7830a36add6c..90b30719667a405e32ddabeaaf7409b527409cd0 100644 (file)
@@ -207,7 +207,7 @@ std::string Request::scheme() const
     if (firstColon > 0) {
         return url().substr(0, firstColon);
     }
-    
+
     return ""; // couldn't parse scheme
 }
 
@@ -219,20 +219,20 @@ std::string Request::path() const
     if (schemeEnd < 0) {
         return ""; // couldn't parse scheme
     }
-    
+
     int hostEnd = u.find('/', schemeEnd + 3);
     if (hostEnd < 0) {
-// couldn't parse host, or URL looks like 'http://foo.com' (no trailing '/') 
-// fixup to root resource path: '/' 
-        return "/"; 
+// couldn't parse host, or URL looks like 'http://foo.com' (no trailing '/')
+// fixup to root resource path: '/'
+        return "/";
     }
-    
+
     int query = u.find('?', hostEnd + 1);
     if (query < 0) {
         // all remainder of URL is path
         return u.substr(hostEnd);
     }
-    
+
     return u.substr(hostEnd, query - hostEnd);
 }
 
@@ -244,7 +244,7 @@ std::string Request::query() const
   if (query < 0) {
     return "";  //no query string found
   }
-  
+
   return u.substr(query);   //includes question mark
 }
 
index ea57837b4f04fb18ca6b5d4206337203eb559f87..700eace47488d4c90e6f231aed5a8aa2f57a68ba 100644 (file)
@@ -46,7 +46,7 @@ char body2[body2Size];
         cerr << "failed:" << #a << endl; \
         exit(1); \
     }
-    
+
 class TestRequest : public HTTP::Request
 {
 public: