7b0c47d3f0
git-subtree-dir: externals/mp git-subtree-split: 29cb5588da3a18ed571a0e41622900a01b9f01eb
16 lines
303 B
C++
16 lines
303 B
C++
/* This file is part of the mp project.
|
|
* Copyright (c) 2017 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <type_traits>
|
|
|
|
namespace mp {
|
|
|
|
/// Lifts a value into a type (a metavalue)
|
|
template<auto V>
|
|
using lift_value = std::integral_constant<decltype(V), V>;
|
|
|
|
} // namespace mp
|