Catch2/src/catch2/internal/catch_case_sensitive.hpp
Martin Hořeňovský 6a46b344c0
Split out CaseSensitive enum out of catch_common.hpp
Only very few places actually use it, so there is no need to have
it be central to everywhere.
2020-08-18 21:02:25 +02:00

12 lines
238 B
C++

#ifndef CATCH_CASE_SENSITIVE_HPP_INCLUDED
#define CATCH_CASE_SENSITIVE_HPP_INCLUDED
namespace Catch {
struct CaseSensitive {
enum Choice { Yes, No };
};
} // namespace Catch
#endif // CATCH_CASE_SENSITIVE_HPP_INCLUDED