Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Jun 9, 2023
1 parent 39fa72f commit 159786b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion include/internal/iutest_compiler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @author t.shirayanagi
* @par copyright
* Copyright (C) 2011-2022, Takazumi Shirayanagi\n
* Copyright (C) 2011-2023, Takazumi Shirayanagi\n
* This software is released under the new BSD License,
* see LICENSE
*/
Expand Down
2 changes: 1 addition & 1 deletion include/internal/iutest_stdlib_defs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @author t.shirayanagi
* @par copyright
* Copyright (C) 2012-2022, Takazumi Shirayanagi\n
* Copyright (C) 2012-2023, Takazumi Shirayanagi\n
* This software is released under the new BSD License,
* see LICENSE
*/
Expand Down
14 changes: 7 additions & 7 deletions include/iutest_matcher.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @author t.shirayanagi
* @par copyright
* Copyright (C) 2014-2020, Takazumi Shirayanagi\n
* Copyright (C) 2014-2023, Takazumi Shirayanagi\n
* This software is released under the new BSD License,
* see LICENSE
*/
Expand Down Expand Up @@ -1092,7 +1092,7 @@ class ElementsAreMatcherBase : public IMatcher
return Check<0, tuples::tuple_size<T>::value - 1>(begin(actual), end(actual), matchers);
}
template<int N, typename T>
static ::std::string WhichIs(const T& matchers)
static ::std::string WhichIsT(const T& matchers)
{
::std::string str = "ElementsAre: {";
str += WhichIs_<T, N, tuples::tuple_size<T>::value-1>(matchers);
Expand Down Expand Up @@ -1179,7 +1179,7 @@ class ElementsAreMatcher IUTEST_CXX_FINAL : public ElementsAreMatcherBase
}
::std::string WhichIs() const IUTEST_CXX_OVERRIDE
{
return ElementsAreMatcherBase::WhichIs<0>(m_matchers);
return ElementsAreMatcherBase::WhichIsT<0>(m_matchers);
}

private:
Expand Down Expand Up @@ -1645,7 +1645,7 @@ class AllOfMatcherBase : public IMatcher
return Check_<T, U, 0, tuples::tuple_size<T>::value-1>(matchers, actual);
}
template<int N, typename T>
static ::std::string WhichIs(const T& matchers)
static ::std::string WhichIsT(const T& matchers)
{
return WhichIs_<T, N, tuples::tuple_size<T>::value-1>(matchers);
}
Expand Down Expand Up @@ -1702,7 +1702,7 @@ class AllOfMatcher IUTEST_CXX_FINAL : public AllOfMatcherBase
}
::std::string WhichIs() const IUTEST_CXX_OVERRIDE
{
return AllOfMatcherBase::WhichIs<0>(m_matchers);
return AllOfMatcherBase::WhichIsT<0>(m_matchers);
}

private:
Expand Down Expand Up @@ -1772,7 +1772,7 @@ class AnyOfMatcherBase : public IMatcher
return Check_<T, U, 0, tuples::tuple_size<T>::value-1>(matchers, actual);
}
template<int N, typename T>
static ::std::string WhichIs(const T& matchers)
static ::std::string WhichIsT(const T& matchers)
{
return WhichIs_<T, N, tuples::tuple_size<T>::value-1>(matchers);
}
Expand Down Expand Up @@ -1829,7 +1829,7 @@ class AnyOfMatcher IUTEST_CXX_FINAL : public AnyOfMatcherBase
}
::std::string WhichIs() const IUTEST_CXX_OVERRIDE
{
return AnyOfMatcherBase::WhichIs<0>(m_matchers);
return AnyOfMatcherBase::WhichIsT<0>(m_matchers);
}

private:
Expand Down

0 comments on commit 159786b

Please sign in to comment.