Skip to content

Commit

Permalink
Fix header include guards for fml/thread_local.h (flutter#8721)
Browse files Browse the repository at this point in the history
While working on flutter#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.
  • Loading branch information
mdempsky authored and cbracken committed Apr 29, 2019
1 parent 1ecf924 commit a0bb23a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fml/thread_local.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef FLUTTER_FML_THREAD_LOCAL_UNIQUE_PTR_H_
#define FLUTTER_FML_THREAD_LOCAL_UNIQUE_PTR_H_
#ifndef FLUTTER_FML_THREAD_LOCAL_H_
#define FLUTTER_FML_THREAD_LOCAL_H_

#include <memory>

Expand Down Expand Up @@ -84,4 +84,4 @@ class ThreadLocalUniquePtr {

} // namespace fml

#endif // FLUTTER_FML_THREAD_LOCAL_UNIQUE_PTR_H_
#endif // FLUTTER_FML_THREAD_LOCAL_H_

0 comments on commit a0bb23a

Please sign in to comment.