Fix failures on R hub and Win builder. (#7763)

* Update date.
* Workaround amalgamation build with clang. (SimpleDMatrix instantiation)
* Workaround compiler error with driver push.
* Revert autoconf requirement.
* Fix model IO on 32-bit environment. (i386)
* Clarify the function name.
This commit is contained in:
Jiaming Yuan
2022-03-30 07:14:33 +08:00
committed by GitHub
parent a50b84244e
commit d4796482b5
7 changed files with 629 additions and 1188 deletions

View File

@@ -49,9 +49,7 @@ class Driver {
void Push(const std::vector<ExpandEntryT> &entries) {
this->Push(entries.begin(), entries.end());
}
void Push(const ExpandEntryT e) {
queue_.push(e);
}
void Push(ExpandEntryT const& e) { queue_.push(e); }
bool IsEmpty() {
return queue_.empty();