File indexing completed on 2025-12-14 10:10:28
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef CATCH_CONFIG_ANDROID_LOGWRITE_HPP_INCLUDED
0018 #define CATCH_CONFIG_ANDROID_LOGWRITE_HPP_INCLUDED
0019
0020 #include <catch2/catch_user_config.hpp>
0021
0022 #if defined(__ANDROID__)
0023 # define CATCH_INTERNAL_CONFIG_ANDROID_LOGWRITE
0024 #endif
0025
0026
0027 #if defined( CATCH_INTERNAL_CONFIG_ANDROID_LOGWRITE ) && \
0028 !defined( CATCH_CONFIG_NO_ANDROID_LOGWRITE ) && \
0029 !defined( CATCH_CONFIG_ANDROID_LOGWRITE )
0030 # define CATCH_CONFIG_ANDROID_LOGWRITE
0031 #endif
0032
0033 #endif