Skip to content

Commit

Permalink
update r848
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed May 17, 2015
1 parent 0e821b0 commit 62b4b2f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = iutest
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.11.99.11
PROJECT_NUMBER = 1.11.99.12

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
11 changes: 11 additions & 0 deletions include/gtest/switch/iutest_switch_gmock.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,17 @@
#if defined(IUTEST_USE_GMOCK)

namespace testing {

#if GMOCK_VER < 0x01070000

template <typename T, typename A>
inline internal::ElementsAreArrayMatcher<T> ElementsAreArray(const ::std::vector<T, A>& vec)
{
return ElementsAreArray(vec.begin(), vec.size());
}

#endif

namespace matchers
{

Expand Down
4 changes: 2 additions & 2 deletions include/iutest_ver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@

//======================================================================
// define
#define IUTEST_VER 0x01119911u //!< iutest version 1.11.99.11
#define IUTEST_VER 0x01119912u //!< iutest version 1.11.99.12
#define IUTEST_MAJORVER 0x01u //!< Major Version
#define IUTEST_MINORVER 0x11u //!< Minor Version
#define IUTEST_BUILD 0x99u //!< Build
#define IUTEST_REVISION 0x11u //!< Revision
#define IUTEST_REVISION 0x12u //!< Revision

/**
* @mainpage
Expand Down

0 comments on commit 62b4b2f

Please sign in to comment.