diff options
author | 2022-03-23 16:01:29 -0700 | |
---|---|---|
committer | 2022-03-31 10:34:04 -0700 | |
commit | 2f01d772a56167b21b23c8dd4bfaa6cb5f667443 (patch) | |
tree | c07e5a5bab48f726a48fa779589b25eb8559e889 /libs/gui/LayerState.cpp | |
parent | c8df26e4e2e010f192d9111b543f9b27c4bab6d4 (diff) |
FTL: Pull Flags into namespace
Bug: 185536303
Test: Build
Change-Id: Ia9aafc78565414815dfc14732ce85b06fa96e17b
Diffstat (limited to 'libs/gui/LayerState.cpp')
-rw-r--r-- | libs/gui/LayerState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gui/LayerState.cpp b/libs/gui/LayerState.cpp index 34db5b1626..53c7f5ac14 100644 --- a/libs/gui/LayerState.cpp +++ b/libs/gui/LayerState.cpp @@ -815,7 +815,7 @@ status_t BufferData::writeToParcel(Parcel* output) const { status_t BufferData::readFromParcel(const Parcel* input) { int32_t tmpInt32; SAFE_PARCEL(input->readInt32, &tmpInt32); - flags = Flags<BufferDataChange>(tmpInt32); + flags = ftl::Flags<BufferDataChange>(tmpInt32); bool tmpBool = false; SAFE_PARCEL(input->readBool, &tmpBool); |