Skip to content

Commit

Permalink
update r779
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Jan 19, 2015
1 parent 60948a0 commit ffaeb16
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 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.0.4
PROJECT_NUMBER = 1.11.0.5

# 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
4 changes: 2 additions & 2 deletions include/impl/iutest_debug.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @author t.shirayanagi
* @par copyright
* Copyright (C) 2013-2014, Takazumi Shirayanagi\n
* Copyright (C) 2013-2015, Takazumi Shirayanagi\n
* This software is released under the new BSD License,
* see LICENSE
*/
Expand All @@ -21,7 +21,7 @@

#if defined(_MSC_VER) && _MSC_VER >= 1310
# if !defined(IUTEST_OS_WINDOWS_MOBILE) && !defined(IUTEST_OS_WINDOWS_PHONE) && !defined(IUTEST_OS_WINDOWS_RT)
# if defined(_MSC_FULL_VER) && (_MSC_FULL_VER <= 190022310)
# if defined(_MSC_FULL_VER) && (_MSC_FULL_VER <= 190022512)
IUTEST_PRAGMA_MSC_WARN_PUSH()
IUTEST_PRAGMA_MSC_WARN_DISABLE(4091)
# include <DbgHelp.h>
Expand Down
3 changes: 1 addition & 2 deletions include/internal/iutest_filepath.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-2014, Takazumi Shirayanagi\n
* Copyright (C) 2012-2015, Takazumi Shirayanagi\n
* This software is released under the new BSD License,
* see LICENSE
*/
Expand All @@ -19,7 +19,6 @@

//======================================================================
// include
#include "iutest_string.hpp"
#include "iutest_port.hpp"

#if IUTEST_HAS_FILE_STAT
Expand Down
4 changes: 4 additions & 0 deletions include/internal/iutest_stdlib.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,10 @@ using tuples::get;
# define IUTEST_HAS_HDR_SYSTIME 1
#endif

// socklen_t
#if defined(IUTEST_OS_WINDOWS_WINE)
# define __socklen_t_defined
#endif

namespace iutest {
namespace detail
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 0x01110004u //!< iutest version 1.11.0.4
#define IUTEST_VER 0x01110005u //!< iutest version 1.11.0.5
#define IUTEST_MAJORVER 0x01u //!< Major Version
#define IUTEST_MINORVER 0x11u //!< Minor Version
#define IUTEST_BUILD 0x00u //!< Build
#define IUTEST_REVISION 0x04u //!< Revision
#define IUTEST_REVISION 0x05u //!< Revision

/**
* @mainpage
Expand Down

0 comments on commit ffaeb16

Please sign in to comment.