| 156 | //if the exact right determineVectorDataType specialization was not used, throw exception at runtime. |
| 157 | template<typename V, typename Dummy = int > |
| 158 | Type determineVectorDataType(const vector<V>& /* type_in */) { throw DataTypeMismatchException("determineVectorDataType(V) usage with unsupported type !"); } |
| 159 | |
| 160 | template< typename Dummy = int > |
| 161 | Type determineVectorDataType(const vector<char>& /* type_in */) { return DataElement::Type::DATA_CHAR_VECTOR; } |
nothing calls this directly
no test coverage detected