/* This file is part of the mp project. * Copyright (c) 2017 MerryMage * SPDX-License-Identifier: 0BSD */ #pragma once #include namespace mp { /// Lifts a value into a type (a metavalue) template using lift_value = std::integral_constant; } // namespace mp