summaryrefslogtreecommitdiff
path: root/src/CommonAPI/OutputStream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CommonAPI/OutputStream.h')
-rw-r--r--src/CommonAPI/OutputStream.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/CommonAPI/OutputStream.h b/src/CommonAPI/OutputStream.h
index 92c7cd9..3cedf27 100644
--- a/src/CommonAPI/OutputStream.h
+++ b/src/CommonAPI/OutputStream.h
@@ -460,11 +460,17 @@ private:
outputStream.beginWriteVectorOfVectors(vectorValue.size());
}
- template<typename _InnerKeyType, typename _InnerValueType>
+ template<typename _InnerKeyType, typename _InnerValueType, typename _InnerHashType>
static inline void doBeginWriteVector(OutputStream& outputStream,
- const std::vector<std::unordered_map<_InnerKeyType, _InnerValueType>>& vectorValue) {
+ const std::vector<std::unordered_map<_InnerKeyType, _InnerValueType, _InnerHashType>>& vectorValue) {
outputStream.beginWriteVectorOfMaps(vectorValue.size());
}
+
+ template<typename _InnerKeyType, typename _InnerValueType>
+ static inline void doBeginWriteVector(OutputStream& outputStream,
+ const std::vector<std::unordered_map<_InnerKeyType, _InnerValueType>>& vectorValue) {
+ outputStream.beginWriteVectorOfMaps(vectorValue.size());
+ }
};
template<typename _VectorElementType, bool _IsSerializableStruct = false>