6c54b85fa8
Change-Id: Ic5cc6616bc2b7ca45f7ad2bca25fa494650a69b7
21 lines
499 B
C++
21 lines
499 B
C++
/*
|
|
* Copyright (C) 2023 The LineageOS Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <hidl/Static.h>
|
|
|
|
namespace android {
|
|
namespace hardware {
|
|
namespace details {
|
|
|
|
// Deprecated; kept for ABI compatibility. Use getBnConstructorMap.
|
|
DoNotDestruct<BnConstructorMap> gBnConstructorMap{};
|
|
|
|
// Deprecated; kept for ABI compatibility. Use getBsConstructorMap.
|
|
DoNotDestruct<BsConstructorMap> gBsConstructorMap{};
|
|
|
|
} // namespace details
|
|
} // namespace hardware
|
|
} // namespace android
|