"googlemock/scripts/generator/cpp/gmock_class.py" did not exist on "c2ad46a5df4414fc2b804c53525f4578f01a3dfe"
Commit d854bd6a authored by Abseil Team's avatar Abseil Team Committed by Andy Soffer
Browse files

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
parent c901f67d
...@@ -844,7 +844,7 @@ struct GTEST_API_ ConstCharPtr { ...@@ -844,7 +844,7 @@ struct GTEST_API_ ConstCharPtr {
// Helper for declaring std::string within 'if' statement // Helper for declaring std::string within 'if' statement
// in pre C++17 build environment. // in pre C++17 build environment.
struct GTEST_API_ TrueWithString { struct TrueWithString {
TrueWithString() = default; TrueWithString() = default;
explicit TrueWithString(const char* str) : value(str) {} explicit TrueWithString(const char* str) : value(str) {}
explicit TrueWithString(const std::string& str) : value(str) {} explicit TrueWithString(const std::string& str) : value(str) {}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment