aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/map_entry_lite.h
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2017-03-30 23:54:39 +0000
committerFeng Xiao <xfxyjwf@gmail.com>2017-03-30 23:54:39 +0000
commitfe97d79abf610fdccfadcd4b503ab3bc0a162d30 (patch)
treec4a1b67232379f79f82fe7641f1c8f8d56828dad /src/google/protobuf/map_entry_lite.h
parentfab8812cc1bb9db0683e7d0b0182a63ee1159874 (diff)
downloadprotobuf-fe97d79abf610fdccfadcd4b503ab3bc0a162d30.tar.gz
protobuf-fe97d79abf610fdccfadcd4b503ab3bc0a162d30.tar.bz2
protobuf-fe97d79abf610fdccfadcd4b503ab3bc0a162d30.zip
Fix MSVC DLL build.
Diffstat (limited to 'src/google/protobuf/map_entry_lite.h')
-rw-r--r--src/google/protobuf/map_entry_lite.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google/protobuf/map_entry_lite.h b/src/google/protobuf/map_entry_lite.h
index cd67f6e0..c466cc7b 100644
--- a/src/google/protobuf/map_entry_lite.h
+++ b/src/google/protobuf/map_entry_lite.h
@@ -92,7 +92,7 @@ struct MoveHelper<false, false, true, T> { // strings and similar
template <typename Derived, typename Base, typename Key, typename Value,
WireFormatLite::FieldType kKeyFieldType,
WireFormatLite::FieldType kValueFieldType, int default_enum_value>
-class LIBPROTOBUF_EXPORT MapEntryImpl : public Base {
+class MapEntryImpl : public Base {
protected:
// Provide utilities to parse/serialize key/value. Provide utilities to
// manipulate internal stored type.
@@ -537,7 +537,7 @@ class LIBPROTOBUF_EXPORT MapEntryImpl : public Base {
template <typename Key, typename Value, WireFormatLite::FieldType kKeyFieldType,
WireFormatLite::FieldType kValueFieldType, int default_enum_value>
-class LIBPROTOBUF_EXPORT MapEntryLite
+class MapEntryLite
: public MapEntryImpl<MapEntryLite<Key, Value, kKeyFieldType,
kValueFieldType, default_enum_value>,
MessageLite, Key, Value, kKeyFieldType,