aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/stubs/status.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/google/protobuf/stubs/status.h')
-rw-r--r--src/google/protobuf/stubs/status.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google/protobuf/stubs/status.h b/src/google/protobuf/stubs/status.h
index 34d6cf12..614ab994 100644
--- a/src/google/protobuf/stubs/status.h
+++ b/src/google/protobuf/stubs/status.h
@@ -62,7 +62,7 @@ enum Code {
};
} // namespace error
-class Status {
+class LIBPROTOBUF_EXPORT Status {
public:
// Creates a "successful" status.
Status();
@@ -106,7 +106,7 @@ class Status {
};
// Prints a human-readable representation of 'x' to 'os'.
-ostream& operator<<(ostream& os, const Status& x);
+LIBPROTOBUF_EXPORT ostream& operator<<(ostream& os, const Status& x);
#define EXPECT_OK(value) EXPECT_TRUE((value).ok())