/* * Copyright (C) 2022 Riyyi * * SPDX-License-Identifier: MIT */ #pragma once namespace Util { namespace Detail { // Avoid ODR (One Definition Rule) violations, // variable templates are required to have external linkage template constexpr T staticConst {}; } // namespace Detail } // namespace Util