#pragma once namespace uart { namespace util { template struct always_false { static constexpr auto value = false; }; template static constexpr auto always_false_v = always_false::value; } // namespace util } // namespace uart