Skip to content

Commit 2e50795

Browse files
committed
Move app/src/mutex.h to app/src/include/firebase/internal/mutex.h
1 parent 428e197 commit 2e50795

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ set(internal_HDRS
227227
src/include/firebase/future.h
228228
src/include/firebase/internal/common.h
229229
src/include/firebase/internal/future_impl.h
230+
src/include/firebase/internal/mutex.h
230231
src/include/firebase/internal/type_traits.h
231232
src/include/firebase/log.h
232233
src/include/firebase/util.h
@@ -247,7 +248,6 @@ set(utility_common_HDRS
247248
src/log.h
248249
src/heartbeat_date_storage_desktop.h
249250
src/heartbeat_info_desktop.h
250-
src/mutex.h
251251
src/optional.h
252252
src/path.h
253253
src/pthread_condvar.h

app/src/mutex.h renamed to app/src/include/firebase/internal/mutex.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
* limitations under the License.
1515
*/
1616

17-
#ifndef FIREBASE_APP_SRC_MUTEX_H_
18-
#define FIREBASE_APP_SRC_MUTEX_H_
17+
#ifndef FIREBASE_APP_SRC_INCLUDE_FIREBASE_INTERNAL_MUTEX_H_
18+
#define FIREBASE_APP_SRC_INCLUDE_FIREBASE_INTERNAL_MUTEX_H_
1919

20-
#include "app/src/include/firebase/internal/platform.h"
20+
#include "firebase/internal/platform.h"
2121

2222
#if FIREBASE_PLATFORM_WINDOWS
2323
#include <windows.h>
@@ -93,4 +93,4 @@ class MutexLock {
9393

9494
} // namespace firebase
9595

96-
#endif // FIREBASE_APP_SRC_MUTEX_H_
96+
#endif // FIREBASE_APP_SRC_INCLUDE_FIREBASE_INTERNAL_MUTEX_H_

0 commit comments

Comments
 (0)