Skip to content
Snippets Groups Projects
Commit a0c813b2 authored by Yang Chen's avatar Yang Chen Committed by Tianqi Chen
Browse files

initialize base class in copy constructors (#2006)

GCC issues warnings with -Wextra if we don't explicitly initialize
base class in copy constructors. This commit fixed the issue.
parent e6e9b371
No related branches found
No related tags found
No related merge requests found
......@@ -603,7 +603,7 @@ class TVMRetValue : public TVMPODValue_ {
using TVMPODValue_::operator TVMContext;
using TVMPODValue_::operator NDArray;
// Disable copy and assign from another value, but allow move.
TVMRetValue(const TVMRetValue& other) {
TVMRetValue(const TVMRetValue& other) : TVMPODValue_() {
this->Assign(other);
}
// conversion operators
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment