Browse Source

Fix CI

tags/v0.3.0-alpha
Jesse Lee 6 years ago
parent
commit
b1ea933345
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      mindspore/ccsrc/dataset/engine/data_schema.cc

+ 1
- 2
mindspore/ccsrc/dataset/engine/data_schema.cc View File

@@ -471,8 +471,7 @@ Status DataSchema::PreLoadExceptionCheck(const nlohmann::json &js) {
// name to column index number.
Status DataSchema::GetColumnNameMap(std::unordered_map<std::string, int32_t> *out_column_name_map) {
if (out_column_name_map == nullptr) {
return Status(StatusCode::kUnexpectedError, __LINE__, __FILE__,
"unexpected null output column name map.");
return Status(StatusCode::kUnexpectedError, __LINE__, __FILE__, "unexpected null output column name map.");
}

for (int32_t i = 0; i < col_descs_.size(); ++i) {


Loading…
Cancel
Save