Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit a0bb23a

Browse files
mdempskycbracken
authored andcommitted
Fix header include guards for fml/thread_local.h (#8721)
While working on #8659, I had planned on renaming this file to thread_local_unique_ptr.h, but decided against that at the last minute before sending for review. However, when reverting the file rename, I forgot to also revert the header guard change.
1 parent 1ecf924 commit a0bb23a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

fml/thread_local.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#ifndef FLUTTER_FML_THREAD_LOCAL_UNIQUE_PTR_H_
6-
#define FLUTTER_FML_THREAD_LOCAL_UNIQUE_PTR_H_
5+
#ifndef FLUTTER_FML_THREAD_LOCAL_H_
6+
#define FLUTTER_FML_THREAD_LOCAL_H_
77

88
#include <memory>
99

@@ -84,4 +84,4 @@ class ThreadLocalUniquePtr {
8484

8585
} // namespace fml
8686

87-
#endif // FLUTTER_FML_THREAD_LOCAL_UNIQUE_PTR_H_
87+
#endif // FLUTTER_FML_THREAD_LOCAL_H_

0 commit comments

Comments
 (0)