mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-21 00:58:01 +02:00
formatting
This commit is contained in:
@ -103,14 +103,13 @@ template <typename T> struct is_vector : public std::false_type {};
|
||||
template <typename T>
|
||||
struct is_vector<std::vector<T>> : public std::true_type {};
|
||||
|
||||
|
||||
|
||||
template<class...> struct Conjunction : std::true_type {};
|
||||
template<class B1> struct Conjunction<B1> : B1 {};
|
||||
template<class B1, class... Bn>
|
||||
template <class...> struct Conjunction : std::true_type {};
|
||||
template <class B1> struct Conjunction<B1> : B1 {};
|
||||
template <class B1, class... Bn>
|
||||
struct Conjunction<B1, Bn...>
|
||||
: std::conditional<bool(B1::value), Conjunction<Bn...>, B1>::type {};
|
||||
|
||||
template<typename T, typename... Ts>
|
||||
using AllSame = typename std::enable_if<Conjunction<std::is_same<T, Ts>...>::value>::type;
|
||||
template <typename T, typename... Ts>
|
||||
using AllSame =
|
||||
typename std::enable_if<Conjunction<std::is_same<T, Ts>...>::value>::type;
|
||||
} // namespace sls
|
@ -4,10 +4,10 @@
|
||||
#define RELEASE "developer"
|
||||
#define APILIB "developer 0x230224"
|
||||
#define APIRECEIVER "developer 0x230224"
|
||||
#define APICTB "developer 0x231102"
|
||||
#define APIGOTTHARD "developer 0x231102"
|
||||
#define APICTB "developer 0x231102"
|
||||
#define APIGOTTHARD "developer 0x231102"
|
||||
#define APIGOTTHARD2 "developer 0x231102"
|
||||
#define APIJUNGFRAU "developer 0x231102"
|
||||
#define APIMYTHEN3 "developer 0x231102"
|
||||
#define APIMOENCH "developer 0x231102"
|
||||
#define APIEIGER "developer 0x231102"
|
||||
#define APIJUNGFRAU "developer 0x231102"
|
||||
#define APIMYTHEN3 "developer 0x231102"
|
||||
#define APIMOENCH "developer 0x231102"
|
||||
#define APIEIGER "developer 0x231102"
|
||||
|
Reference in New Issue
Block a user