Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:54:05

0001 
0002 //              Copyright Catch2 Authors
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //   (See accompanying file LICENSE.txt or copy at
0005 //        https://www.boost.org/LICENSE_1_0.txt)
0006 
0007 // SPDX-License-Identifier: BSL-1.0
0008 #ifndef CATCH_CONSOLE_WIDTH_HPP_INCLUDED
0009 #define CATCH_CONSOLE_WIDTH_HPP_INCLUDED
0010 
0011 // This include must be kept so that user's configured value for CONSOLE_WIDTH
0012 // is used before we attempt to provide a default value
0013 #include <catch2/catch_user_config.hpp>
0014 
0015 #ifndef CATCH_CONFIG_CONSOLE_WIDTH
0016 #define CATCH_CONFIG_CONSOLE_WIDTH 80
0017 #endif
0018 
0019 #endif // CATCH_CONSOLE_WIDTH_HPP_INCLUDED