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.
This commit is contained in:
Matthew Dempsky 2019-04-29 11:07:04 -07:00 committed by Chris Bracken
parent 1ecf924ff8
commit a0bb23aad1

View File

@ -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>
@ -84,4 +84,4 @@ class ThreadLocalUniquePtr {
} // namespace fml
#endif // FLUTTER_FML_THREAD_LOCAL_UNIQUE_PTR_H_
#endif // FLUTTER_FML_THREAD_LOCAL_H_