/* This file is part of the mp project. * Copyright (c) 2020 MerryMage * SPDX-License-Identifier: 0BSD */ #pragma once #include namespace mp { /// Do two metavalues contain the same value? template using value_equal = std::bool_constant; } // namespace mp