f0f1e67f41
* 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
10 lines
233 B
C++
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;
|
|
}
|