summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/StreamHelpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Ice/StreamHelpers.h')
-rw-r--r--cpp/include/Ice/StreamHelpers.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/cpp/include/Ice/StreamHelpers.h b/cpp/include/Ice/StreamHelpers.h
index f9cc3f0b48c..e4ef705b605 100644
--- a/cpp/include/Ice/StreamHelpers.h
+++ b/cpp/include/Ice/StreamHelpers.h
@@ -305,7 +305,6 @@ struct StreamableTraits< ::std::vector<bool> >
static const bool fixedLength = false;
};
-
#ifdef ICE_CPP11_MAPPING
template<typename T>
struct StreamableTraits<::std::shared_ptr<T>, typename ::std::enable_if<::std::is_base_of<::Ice::ObjectPrx, T>::value>::type>
@@ -350,7 +349,6 @@ struct StreamableTraits< ::IceInternal::Handle<T> >
template<typename T, StreamHelperCategory st>
struct StreamHelper;
-
// Helper for builtins, delegates read/write to the stream.
template<typename T>
struct StreamHelper<T, StreamHelperCategoryBuiltin>
@@ -555,7 +553,6 @@ struct StreamHelper<std::pair<IceUtil::ScopedArray<T>, std::pair<const T*, const
};
#endif
-
// Helper for dictionaries
template<typename T>
struct StreamHelper<T, StreamHelperCategoryDictionary>
@@ -633,7 +630,6 @@ struct StreamHelper<T, StreamHelperCategoryClass>
}
};
-
//
// Helpers to read/write optional attributes or members.
//
@@ -689,7 +685,6 @@ struct GetOptionalFormat<StreamHelperCategoryEnum, minWireSize, false>
static const OptionalFormat value = ICE_SCOPED_ENUM(OptionalFormat, Size);
};
-
// Base helper: simply read/write the data
template<typename T, StreamHelperCategory st, bool fixedLength>
struct StreamOptionalHelper
@@ -771,7 +766,6 @@ struct StreamOptionalHelper<T, StreamHelperCategoryProxy, false> : StreamOptiona
{
};
-
//
// Helpers to read/write optional sequences or dictionaries
//
@@ -856,7 +850,6 @@ struct StreamOptionalContainerHelper<T, true, 1>
}
};
-
//
// Helper to write sequences, delegates to the optional container
// helper template partial specializations.