diff options
| author | 2022-04-01 12:26:51 +0000 | |
|---|---|---|
| committer | 2022-04-01 12:26:51 +0000 | |
| commit | ffe62451d81e8ab1170b55f725529839e89853f6 (patch) | |
| tree | e0f5301da3890295032ee0e3e214e6e102adf08d /libs/gui/LayerState.cpp | |
| parent | 963291017c870adf628bff8bafd98d3c4c47fc9e (diff) | |
| parent | 2f01d772a56167b21b23c8dd4bfaa6cb5f667443 (diff) | |
Merge "FTL: Pull Flags into namespace" into tm-dev
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 304fc17e07..f7cd5c4f71 100644 --- a/libs/gui/LayerState.cpp +++ b/libs/gui/LayerState.cpp @@ -821,7 +821,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); |