catch_console_width.hpp
1 2 // Copyright Catch2 Authors 3 // Distributed under the Boost Software License, Version 1.0. 4 // (See accompanying file LICENSE.txt or copy at 5 // https://www.boost.org/LICENSE_1_0.txt) 6 7 // SPDX-License-Identifier: BSL-1.0 8 #ifndef CATCH_CONSOLE_WIDTH_HPP_INCLUDED 9 #define CATCH_CONSOLE_WIDTH_HPP_INCLUDED 10 11 // This include must be kept so that user's configured value for CONSOLE_WIDTH 12 // is used before we attempt to provide a default value 13 #include <catch2/catch_user_config.hpp> 14 15 #ifndef CATCH_CONFIG_CONSOLE_WIDTH 16 #define CATCH_CONFIG_CONSOLE_WIDTH 80 17 #endif 18 19 #endif // CATCH_CONSOLE_WIDTH_HPP_INCLUDED