platform_hardware_tequila_c.../libui/Fence.cpp
Ethan Chen f0f1e67f41 compat: Add shim for Fence destructor
* This was replaced with a default destructor which has no visible
  linkage. No-op the destructor call and hope the actual destructor is
  called from underneath.

Change-Id: Id039e916c24959e9f60391bc10886df878f4d265
2022-10-27 17:21:16 +01:00

10 lines
233 B
C++

/*
* Copyright (C) 2022 The LineageOS Project
*
* SPDX-License-Identifier: Apache-2.0
*/
// android::Fence::~Fence()
extern "C" void _ZN7android5FenceD1Ev() {
// no-op, the explicit destructor was replaced with = default;
}