summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest/internal/gtest-port.h
diff options
context:
space:
mode:
authorAndrei Polushin <polushin@gmail.com>2022-07-14 14:36:41 (GMT)
committerAndrei Polushin <polushin@gmail.com>2022-07-14 14:36:41 (GMT)
commit3655149a60ad7bfeb0902f7308b95dafa97a68ad (patch)
tree25eeeec5fa24852497c296666670961b602561d4 /googletest/include/gtest/internal/gtest-port.h
parentbea621c3c39d8a7f71f07bd543c3a58bfa684f92 (diff)
downloadgoogletest-3655149a60ad7bfeb0902f7308b95dafa97a68ad.zip
googletest-3655149a60ad7bfeb0902f7308b95dafa97a68ad.tar.gz
googletest-3655149a60ad7bfeb0902f7308b95dafa97a68ad.tar.bz2
export ThreadLocalValueHolderBase which is required by exported APIs.refs/pull/3946/head
fixes #3944
Diffstat (limited to 'googletest/include/gtest/internal/gtest-port.h')
-rw-r--r--googletest/include/gtest/internal/gtest-port.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/include/gtest/internal/gtest-port.h b/googletest/include/gtest/internal/gtest-port.h
index 0003d27..c9e1f32 100644
--- a/googletest/include/gtest/internal/gtest-port.h
+++ b/googletest/include/gtest/internal/gtest-port.h
@@ -1710,7 +1710,7 @@ typedef GTestMutexLock MutexLock;
// C-linkage. Therefore it cannot be templatized to access
// ThreadLocal<T>. Hence the need for class
// ThreadLocalValueHolderBase.
-class ThreadLocalValueHolderBase {
+class GTEST_API_ ThreadLocalValueHolderBase {
public:
virtual ~ThreadLocalValueHolderBase() {}
};