Application develop start
This commit is contained in:
@@ -76,7 +76,7 @@ const std::vector<bool> digitalIO::digitalOutReadPort()
|
||||
rv.reserve(getOutNum());
|
||||
rv.insert(rv.begin(), locals.begin(), locals.end());
|
||||
rv.insert(rv.end(), remotes.begin(), remotes.end());
|
||||
return std::move(rv);
|
||||
return rv;
|
||||
}
|
||||
|
||||
const bool digitalIO::digitalInRead(const uint8_t ch)
|
||||
@@ -104,7 +104,7 @@ const std::vector<bool> digitalIO::digitalInReadPort()
|
||||
rv.reserve(getInNum());
|
||||
rv.insert(rv.begin(), locals.begin(), locals.end());
|
||||
rv.insert(rv.end(), remotes.begin(), remotes.end());
|
||||
return std::move(rv);
|
||||
return rv;
|
||||
}
|
||||
|
||||
void digitalIO::reset()
|
||||
|
||||
Reference in New Issue
Block a user