remove blank lines
parent
c52f54221e
commit
52f54d07bd
|
@ -251,9 +251,12 @@ void ArgumentList::emit_cython_pyx(FileWriter& file) const {
|
||||||
|
|
||||||
/* ************************************************************************* */
|
/* ************************************************************************* */
|
||||||
std::string ArgumentList::pyx_convertEigenTypeAndStorageOrder(const std::string& indent) const {
|
std::string ArgumentList::pyx_convertEigenTypeAndStorageOrder(const std::string& indent) const {
|
||||||
string ret;
|
string ret, conversion;
|
||||||
for (size_t j = 0; j < size(); ++j)
|
for (size_t j = 0; j < size(); ++j) {
|
||||||
ret += indent + at(j).pyx_convertEigenTypeAndStorageOrder() + "\n";
|
conversion = at(j).pyx_convertEigenTypeAndStorageOrder();
|
||||||
|
if (!conversion.empty())
|
||||||
|
ret += indent + conversion + "\n";
|
||||||
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue