aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2020-01-09 13:48:26 -0500
committerAndy Soffer <asoffer@google.com>2020-01-09 18:25:32 -0500
commitd854bd6acc47f7f6e168007d58b5f509e4981b36 (patch)
tree7ba42bbe80f96ab4bd67b1c039c740e15e7e8c9a
parentc901f67ddf8aab44443f1be3efe864cb3daa95af (diff)
downloadgoogletest-d854bd6acc47f7f6e168007d58b5f509e4981b36.tar.gz
googletest-d854bd6acc47f7f6e168007d58b5f509e4981b36.tar.bz2
googletest-d854bd6acc47f7f6e168007d58b5f509e4981b36.zip
Googletest export
Removing GTEST_API from TrueWithString. This type is only used in test code on one side of a DLL boundary so it is not necessary. PiperOrigin-RevId: 288927929
-rw-r--r--googletest/include/gtest/internal/gtest-internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/include/gtest/internal/gtest-internal.h b/googletest/include/gtest/internal/gtest-internal.h
index 90c962b0..6bad8780 100644
--- a/googletest/include/gtest/internal/gtest-internal.h
+++ b/googletest/include/gtest/internal/gtest-internal.h
@@ -844,7 +844,7 @@ struct GTEST_API_ ConstCharPtr {
// Helper for declaring std::string within 'if' statement
// in pre C++17 build environment.
-struct GTEST_API_ TrueWithString {
+struct TrueWithString {
TrueWithString() = default;
explicit TrueWithString(const char* str) : value(str) {}
explicit TrueWithString(const std::string& str) : value(str) {}