aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominic Meiser <dmeiser@txcorp.com>2015-10-05 18:04:38 -0400
committerDominic Meiser <dmeiser@txcorp.com>2015-10-29 21:56:02 -0600
commit84d7ff10888c3004fc87b8438a98ecf4f863242e (patch)
treeef20cb47db323f1f6e41fca04482f517a56465f9
parent580378d522d579bcaca24a90ccb31abafa157a8d (diff)
downloadgoogletest-84d7ff10888c3004fc87b8438a98ecf4f863242e.tar.gz
googletest-84d7ff10888c3004fc87b8438a98ecf4f863242e.tar.bz2
googletest-84d7ff10888c3004fc87b8438a98ecf4f863242e.zip
Fix symbol visibility of StreamingListener.
-rw-r--r--googletest/src/gtest-internal-inl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/src/gtest-internal-inl.h b/googletest/src/gtest-internal-inl.h
index 56c8a20c..ed8a682a 100644
--- a/googletest/src/gtest-internal-inl.h
+++ b/googletest/src/gtest-internal-inl.h
@@ -1032,7 +1032,7 @@ class TestResultAccessor {
#if GTEST_CAN_STREAM_RESULTS_
// Streams test results to the given port on the given host machine.
-class StreamingListener : public EmptyTestEventListener {
+class GTEST_API_ StreamingListener : public EmptyTestEventListener {
public:
// Abstract base class for writing strings to a socket.
class AbstractSocketWriter {