Skip to content

Commit 97effb9

Browse files
Fix: Correct include path for StorageInternal in list_result_desktop.h
Changed the include from 'storage_internal_desktop.h' to 'storage_desktop.h' in list_result_desktop.h. 'storage_internal_desktop.h' does not exist; 'storage_desktop.h' contains the definition for internal::StorageInternal, which is used by ListResultInternal. This resolves the 'file not found' compilation error.
1 parent 6ec0081 commit 97effb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/src/desktop/list_result_desktop.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <vector>
77

88
#include "firebase/storage/storage_reference.h"
9-
#include "storage/src/desktop/storage_internal_desktop.h"
9+
#include "storage/src/desktop/storage_desktop.h" // Corrected include path
1010
#include "storage/src/desktop/storage_reference_desktop.h"
1111

1212
namespace firebase {

0 commit comments

Comments
 (0)