47 lines
1.7 KiB
C++
47 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <folly/Portability.h>
|
|
#include <folly/lang/StaticConst.h>
|
|
|
|
// FOLLY_DEFINE_CPO
|
|
//
|
|
// Helper for portably defining customization-point objects (CPOs).
|
|
//
|
|
// The customization-point object must be placed in a nested namespace to avoid
|
|
// potential conflicts with customizations defined as friend-functions of types
|
|
// defined in the same namespace as the CPO.
|
|
//
|
|
// In C++17 and later the object may be defined using 'inline constexpr' to
|
|
// avoid ODR issues. However, prior to that a helper template is required to
|
|
// ensure that there is only a single instance of the CPO created and then a
|
|
// named reference in an anonymous namespace is required to avoid duplicate
|
|
// symbol definitions.
|
|
#if FOLLY_HAS_INLINE_VARIABLES
|
|
#define FOLLY_DEFINE_CPO(Type, Name) \
|
|
namespace folly_cpo__ { \
|
|
inline constexpr Type Name{}; \
|
|
} \
|
|
using namespace folly_cpo__;
|
|
#else
|
|
#define FOLLY_DEFINE_CPO(Type, Name) \
|
|
namespace { \
|
|
constexpr auto& Name = ::folly::StaticConst<Type>::value; \
|
|
}
|
|
#endif
|