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.
This commit is contained in:
Martin Hořeňovský 2020-08-18 13:11:30 +02:00
parent e7eb749815
commit 6a46b344c0
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
6 changed files with 17 additions and 6 deletions

View file

@ -0,0 +1,12 @@
#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