diff options
author | Abseil Team <absl-team@google.com> | 2020-01-09 18:48:26 (GMT) |
---|---|---|
committer | Andy Soffer <asoffer@google.com> | 2020-01-09 23:25:32 (GMT) |
commit | d854bd6acc47f7f6e168007d58b5f509e4981b36 (patch) | |
tree | 7ba42bbe80f96ab4bd67b1c039c740e15e7e8c9a /googletest/include | |
parent | c901f67ddf8aab44443f1be3efe864cb3daa95af (diff) | |
download | googletest-d854bd6acc47f7f6e168007d58b5f509e4981b36.zip googletest-d854bd6acc47f7f6e168007d58b5f509e4981b36.tar.gz googletest-d854bd6acc47f7f6e168007d58b5f509e4981b36.tar.bz2 |
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
Diffstat (limited to 'googletest/include')
-rw-r--r-- | googletest/include/gtest/internal/gtest-internal.h | 2 |
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 90c962b..6bad878 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) {} |