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:
parent
e7eb749815
commit
6a46b344c0
6 changed files with 17 additions and 6 deletions
12
src/catch2/internal/catch_case_sensitive.hpp
Normal file
12
src/catch2/internal/catch_case_sensitive.hpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue