mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-09 16:13:53 +00:00
32 lines
997 B
C++
32 lines
997 B
C++
|
|
// Copyright Catch2 Authors
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
// https://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
#ifndef CATCH_CASE_INSENSITIVE_COMPARISONS_HPP_INCLUDED
|
|
#define CATCH_CASE_INSENSITIVE_COMPARISONS_HPP_INCLUDED
|
|
|
|
#include <catch2/internal/catch_stringref.hpp>
|
|
|
|
#include <string>
|
|
|
|
namespace Catch {
|
|
namespace Detail {
|
|
//! Provides case-insensitive `op<` semantics when called
|
|
struct CaseInsensitiveLess {
|
|
bool operator()( StringRef lhs,
|
|
StringRef rhs ) const;
|
|
};
|
|
|
|
//! Provides case-insensitive `op==` semantics when called
|
|
struct CaseInsensitiveEqualTo {
|
|
bool operator()( StringRef lhs,
|
|
StringRef rhs ) const;
|
|
};
|
|
|
|
} // namespace Detail
|
|
} // namespace Catch
|
|
|
|
#endif // CATCH_CASE_INSENSITIVE_COMPARISONS_HPP_INCLUDED
|