@@ -37,12 +37,12 @@ class StoragePath {
3737
3838 // Constructs a storage path, based on an input URL. The URL can either be
3939 // an HTTP[s] link, or a gs URI.
40- explicit StoragePath (StorageInternal * storage, const std::string& path);
40+ explicit StoragePath (StorageInternal* storage, const std::string& path);
4141
4242 // Constructs a storage path, based on raw strings for the bucket, path, and
4343 // object.
44- StoragePath (StorageInternal * storage, const std::string& bucket, const std::string& path ,
45- const std::string& object = " " );
44+ StoragePath (StorageInternal* storage, const std::string& bucket,
45+ const std::string& path, const std::string& object = " " );
4646
4747 // The bucket portion of this path.
4848 // In the path: MyBucket/folder/object, it would return "MyBucket".
@@ -84,16 +84,16 @@ class StoragePath {
8484 private:
8585 static const char * const kSeparator ;
8686
87- StoragePath (StorageInternal *storage, const std::string& bucket, const Path& path)
88- : storage_internal_(storage), bucket_(bucket), path_(path) {}
87+ StoragePath (StorageInternal* storage, const std::string& bucket,
88+ const Path& path)
89+ : storage_internal_(storage), bucket_(bucket), path_(path) {}
8990
9091 void ConstructFromGsUri (const std::string& uri, int path_start);
9192 void ConstructFromHttpUrl (const std::string& url, int path_start);
9293
9394 std::string bucket_;
9495 Path path_;
9596 StorageInternal* storage_internal_;
96-
9797};
9898
9999} // namespace internal
0 commit comments