// Tweak-header, A New Approach to Build-Time Library Configuration,
// by Colby Pike aka vector-of-bool. Oct 4, 2020
// https://vector-of-bool.github.io/2020/10/04/lib-configuration.html

namespace program { namespace config {

    constexpr bool do_audit() noexcept
    {
        return true;
    }
}}