Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Oct 22, 2020
1 parent e584943 commit 05bc118
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 5 additions & 3 deletions include/internal/iutest_stdlib_defs.hpp
Expand Up @@ -36,13 +36,15 @@

// <version> header
#if !defined(IUTEST_HAS_CXX_HDR_VERSION)
# if defined(__has_include) && __has_include(<version>)
# define IUTEST_HAS_CXX_HDR_VERSION 1
# if defined(__has_include)
# if __has_include(<version>)
# define IUTEST_HAS_CXX_HDR_VERSION 1
# endif
# endif
#endif

#if !defined(IUTEST_HAS_CXX_HDR_VERSION)
# define IUTEST_HAS_CXX_HDR_VERSION 0
# define IUTEST_HAS_CXX_HDR_VERSION 0
#endif

#if IUTEST_HAS_CXX_HDR_VERSION
Expand Down
3 changes: 2 additions & 1 deletion projects/vscode/iutest.code-workspace
Expand Up @@ -117,7 +117,8 @@
"numeric": "cpp",
"stack": "cpp",
"unordered_map": "cpp"
}
},
"bracketLens.minBracketScopeLines": 12
},
"launch": {
"configurations": [
Expand Down

0 comments on commit 05bc118

Please sign in to comment.