Mercurial > hg > svcore
comparison rdf/RDFTransformFactory.cpp @ 935:f960d67ce842 tonioni
Merge from branch warnfix_no_size_t
author | Chris Cannam |
---|---|
date | Wed, 18 Jun 2014 13:42:01 +0100 |
parents | 06579b8ffb7b |
children | a51781b11dd4 |
comparison
equal
deleted
inserted
replaced
925:3efc20c59a94 | 935:f960d67ce842 |
---|---|
154 { | 154 { |
155 return m_errorString; | 155 return m_errorString; |
156 } | 156 } |
157 | 157 |
158 std::vector<Transform> | 158 std::vector<Transform> |
159 RDFTransformFactoryImpl::getTransforms(ProgressReporter *reporter) | 159 RDFTransformFactoryImpl::getTransforms(ProgressReporter *) |
160 { | 160 { |
161 std::vector<Transform> transforms; | 161 std::vector<Transform> transforms; |
162 | 162 |
163 std::map<QString, Transform> uriTransformMap; | 163 std::map<QString, Transform> uriTransformMap; |
164 | 164 |
213 "sample_rate", | 213 "sample_rate", |
214 "start", | 214 "start", |
215 "duration" | 215 "duration" |
216 }; | 216 }; |
217 | 217 |
218 for (int j = 0; j < sizeof(optionals)/sizeof(optionals[0]); ++j) { | 218 for (int j = 0; j < int(sizeof(optionals)/sizeof(optionals[0])); ++j) { |
219 | 219 |
220 QString optional = optionals[j]; | 220 QString optional = optionals[j]; |
221 | 221 |
222 Node onode = m_store->complete | 222 Node onode = m_store->complete |
223 (Triple(Uri(transformUri), | 223 (Triple(Uri(transformUri), |