Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/GSL.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordmitrykobets-msft <89153909+dmitrykobets-msft@users.noreply.github.com>2021-11-17 23:24:40 +0300
committerGitHub <noreply@github.com>2021-11-17 23:24:40 +0300
commite0880931ae5885eb988d1a8a57acf8bc2b8dacda (patch)
tree0dd722b55414872d23cf627912cf5964df95c527
parentc31a9ad5e8e99da8567237a7ba51a7d8f419e5bf (diff)
Fix googletest build failure with gcc 11.1+ (#1015)
-rw-r--r--tests/CMakeLists.txt.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt.in b/tests/CMakeLists.txt.in
index 1b10044..2535f8f 100644
--- a/tests/CMakeLists.txt.in
+++ b/tests/CMakeLists.txt.in
@@ -4,7 +4,7 @@ project(googletest-download NONE)
include(ExternalProject)
ExternalProject_Add(googletest
GIT_REPOSITORY https://github.com/google/googletest.git
- GIT_TAG 389cb68b87193358358ae87cc56d257fd0d80189
+ GIT_TAG 1b18723e874b256c1e39378c6774a90701d70f7a
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build"
CONFIGURE_COMMAND ""