Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
brinkqiang committed Dec 13, 2024
1 parent 56a8939 commit 38dd3f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/dmtimeapitest/gtest-all.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7881,6 +7881,7 @@ InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() {
#else
# include <limits.h>
# include <climits> // Some Linux distributions define PATH_MAX here.
# include <unistd.h>
#endif // GTEST_OS_WINDOWS_MOBILE

#if GTEST_OS_WINDOWS
Expand All @@ -7890,7 +7891,7 @@ InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() {
#elif defined(_XOPEN_PATH_MAX)
# define GTEST_PATH_MAX_ _XOPEN_PATH_MAX
#else
# define GTEST_PATH_MAX_ _POSIX_PATH_MAX
# define GTEST_PATH_MAX_ 512
#endif // GTEST_OS_WINDOWS


Expand Down

0 comments on commit 38dd3f5

Please sign in to comment.