
Only very few places actually use it, so there is no need to have it be central to everywhere.
12 lines
238 B
C++
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
|